fix indents

This commit is contained in:
David Rose 2006-01-13 18:56:51 +00:00
parent 572a146c24
commit 9f178bdb25

View File

@ -292,11 +292,11 @@ read(const Filename &fullpath, int z, int primary_file_num_channels) {
if (textures_header_only) { if (textures_header_only) {
if (!image.read_header(fullpath)) { if (!image.read_header(fullpath)) {
gobj_cat.error() gobj_cat.error()
<< "Texture::read() - couldn't read: " << fullpath << endl; << "Texture::read() - couldn't read: " << fullpath << endl;
return false; return false;
} }
image = PNMImage(1, 1, image.get_num_channels(), image.get_maxval(), image = PNMImage(1, 1, image.get_num_channels(), image.get_maxval(),
image.get_type()); image.get_type());
image.fill(0.2, 0.3, 1.0); image.fill(0.2, 0.3, 1.0);
if (image.has_alpha()) { if (image.has_alpha()) {
image.alpha_fill(1.0); image.alpha_fill(1.0);
@ -305,7 +305,7 @@ read(const Filename &fullpath, int z, int primary_file_num_channels) {
} else { } else {
if (!image.read(fullpath, NULL, false)) { if (!image.read(fullpath, NULL, false)) {
gobj_cat.error() gobj_cat.error()
<< "Texture::read() - couldn't read: " << fullpath << endl; << "Texture::read() - couldn't read: " << fullpath << endl;
return false; return false;
} }
} }
@ -346,11 +346,11 @@ read(const Filename &fullpath, const Filename &alpha_fullpath,
if (textures_header_only) { if (textures_header_only) {
if (!image.read_header(fullpath)) { if (!image.read_header(fullpath)) {
gobj_cat.error() gobj_cat.error()
<< "Texture::read() - couldn't read: " << fullpath << endl; << "Texture::read() - couldn't read: " << fullpath << endl;
return false; return false;
} }
image = PNMImage(1, 1, image.get_num_channels(), image.get_maxval(), image = PNMImage(1, 1, image.get_num_channels(), image.get_maxval(),
image.get_type()); image.get_type());
image.fill(0.2, 0.3, 1.0); image.fill(0.2, 0.3, 1.0);
if (image.has_alpha()) { if (image.has_alpha()) {
image.alpha_fill(1.0); image.alpha_fill(1.0);
@ -359,7 +359,7 @@ read(const Filename &fullpath, const Filename &alpha_fullpath,
} else { } else {
if (!image.read(fullpath, NULL, false)) { if (!image.read(fullpath, NULL, false)) {
gobj_cat.error() gobj_cat.error()
<< "Texture::read() - couldn't read: " << fullpath << endl; << "Texture::read() - couldn't read: " << fullpath << endl;
return false; return false;
} }
} }
@ -368,12 +368,12 @@ read(const Filename &fullpath, const Filename &alpha_fullpath,
if (textures_header_only) { if (textures_header_only) {
if (!alpha_image.read_header(alpha_fullpath)) { if (!alpha_image.read_header(alpha_fullpath)) {
gobj_cat.error() gobj_cat.error()
<< "Texture::read() - couldn't read: " << alpha_fullpath << endl; << "Texture::read() - couldn't read: " << alpha_fullpath << endl;
return false; return false;
} }
alpha_image = PNMImage(1, 1, alpha_image.get_num_channels(), alpha_image = PNMImage(1, 1, alpha_image.get_num_channels(),
alpha_image.get_maxval(), alpha_image.get_maxval(),
alpha_image.get_type()); alpha_image.get_type());
alpha_image.fill(1.0); alpha_image.fill(1.0);
if (alpha_image.has_alpha()) { if (alpha_image.has_alpha()) {
alpha_image.alpha_fill(1.0); alpha_image.alpha_fill(1.0);
@ -382,7 +382,7 @@ read(const Filename &fullpath, const Filename &alpha_fullpath,
} else { } else {
if (!alpha_image.read(alpha_fullpath, NULL, true)) { if (!alpha_image.read(alpha_fullpath, NULL, true)) {
gobj_cat.error() gobj_cat.error()
<< "Texture::read() - couldn't read (alpha): " << alpha_fullpath << endl; << "Texture::read() - couldn't read (alpha): " << alpha_fullpath << endl;
return false; return false;
} }
} }
@ -615,8 +615,8 @@ load(const PNMImage &pnmimage, int z) {
} }
if (!reconsider_image_properties(pnmimage.get_x_size(), pnmimage.get_y_size(), if (!reconsider_image_properties(pnmimage.get_x_size(), pnmimage.get_y_size(),
pnmimage.get_num_channels(), component_type, pnmimage.get_num_channels(), component_type,
z)) { z)) {
return false; return false;
} }
@ -948,7 +948,7 @@ set_border_color(const Colorf &color) {
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
void Texture:: void Texture::
set_render_to_texture(bool render_to_texture) { set_render_to_texture(bool render_to_texture) {
_render_to_texture = render_to_texture; _render_to_texture = render_to_texture;
} }
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
@ -1548,7 +1548,7 @@ reconsider_z_size(int z) {
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
bool Texture:: bool Texture::
reconsider_image_properties(int x_size, int y_size, int num_components, reconsider_image_properties(int x_size, int y_size, int num_components,
Texture::ComponentType component_type, int z) { Texture::ComponentType component_type, int z) {
if (!_loaded_from_disk || num_components != _num_components) { if (!_loaded_from_disk || num_components != _num_components) {
// Come up with a default format based on the number of channels. // Come up with a default format based on the number of channels.
// But only do this the first time the file is loaded, or if the // But only do this the first time the file is loaded, or if the
@ -1765,33 +1765,33 @@ make_from_bam(const FactoryParams &params) {
// This texture does have a filename, so try to load it from disk. // This texture does have a filename, so try to load it from disk.
VirtualFileSystem *vfs = VirtualFileSystem::get_global_ptr(); VirtualFileSystem *vfs = VirtualFileSystem::get_global_ptr();
if (!manager->get_filename().empty()) { if (!manager->get_filename().empty()) {
// If texture filename was given relative to the bam filename, // If texture filename was given relative to the bam filename,
// expand it now. // expand it now.
Filename bam_dir = manager->get_filename().get_dirname(); Filename bam_dir = manager->get_filename().get_dirname();
vfs->resolve_filename(filename, bam_dir); vfs->resolve_filename(filename, bam_dir);
if (!alpha_filename.empty()) { if (!alpha_filename.empty()) {
vfs->resolve_filename(alpha_filename, bam_dir); vfs->resolve_filename(alpha_filename, bam_dir);
} }
} }
switch (texture_type) { switch (texture_type) {
case TT_1d_texture: case TT_1d_texture:
case TT_2d_texture: case TT_2d_texture:
if (alpha_filename.empty()) { if (alpha_filename.empty()) {
me = TexturePool::load_texture(filename, primary_file_num_channels); me = TexturePool::load_texture(filename, primary_file_num_channels);
} else { } else {
me = TexturePool::load_texture(filename, alpha_filename, me = TexturePool::load_texture(filename, alpha_filename,
primary_file_num_channels, alpha_file_channel); primary_file_num_channels, alpha_file_channel);
} }
break; break;
case TT_3d_texture: case TT_3d_texture:
me = TexturePool::load_3d_texture(filename); me = TexturePool::load_3d_texture(filename);
break; break;
case TT_cube_map: case TT_cube_map:
me = TexturePool::load_cube_map(filename); me = TexturePool::load_cube_map(filename);
break; break;
} }
} }
} }
@ -1904,23 +1904,23 @@ write_datagram(BamWriter *manager, Datagram &me) {
alpha_filename = get_alpha_fullpath(); alpha_filename = get_alpha_fullpath();
if (!has_bam_dir || filename.find_on_searchpath(bam_dir) == -1) { if (!has_bam_dir || filename.find_on_searchpath(bam_dir) == -1) {
if (filename.find_on_searchpath(get_texture_path()) == -1) { if (filename.find_on_searchpath(get_texture_path()) == -1) {
filename.find_on_searchpath(get_model_path()); filename.find_on_searchpath(get_model_path());
} }
} }
if (gobj_cat.is_debug()) { if (gobj_cat.is_debug()) {
gobj_cat.debug() gobj_cat.debug()
<< "Texture file " << get_filename() << "Texture file " << get_filename()
<< " found as " << filename << "\n"; << " found as " << filename << "\n";
} }
if (!has_bam_dir || alpha_filename.find_on_searchpath(bam_dir) == -1) { if (!has_bam_dir || alpha_filename.find_on_searchpath(bam_dir) == -1) {
if (alpha_filename.find_on_searchpath(get_texture_path()) == -1) { if (alpha_filename.find_on_searchpath(get_texture_path()) == -1) {
alpha_filename.find_on_searchpath(get_model_path()); alpha_filename.find_on_searchpath(get_model_path());
} }
} }
if (gobj_cat.is_debug()) { if (gobj_cat.is_debug()) {
gobj_cat.debug() gobj_cat.debug()
<< "Alpha image " << get_alpha_filename() << "Alpha image " << get_alpha_filename()
<< " found as " << alpha_filename << "\n"; << " found as " << alpha_filename << "\n";
} }
break; break;