diff options
author | Brian Paul <[email protected]> | 2000-06-27 17:12:10 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-06-27 17:12:10 +0000 |
commit | f7688171c48980b23c351a2391513c8b825ae991 (patch) | |
tree | e91cab06d2572365aa5d36ab01b8c3b3f2a88133 /progs/demos/fire.c | |
parent | d88f8e9cacac544c5524731f54090d5c3a6076e4 (diff) |
minor tweaks
Diffstat (limited to 'progs/demos/fire.c')
-rw-r--r-- | progs/demos/fire.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/progs/demos/fire.c b/progs/demos/fire.c index 6bf39a57b78..f4c45219d05 100644 --- a/progs/demos/fire.c +++ b/progs/demos/fire.c @@ -597,11 +597,12 @@ inittextures(void) glGenTextures(1, &treeid); glBindTexture(GL_TEXTURE_2D, treeid); + if (1) { int w, h; GLenum format; int x, y; - GLubyte *image = LoadRGBImage("../images/tree2.rgb", &w, &h, &format); + GLubyte *image = LoadRGBImage("../images/tree3.rgb", &w, &h, &format); if (!image) { fprintf(stderr, "Error reading a texture.\n"); @@ -626,7 +627,12 @@ inittextures(void) exit(-1); } } - + else { + if (!LoadRGBMipmaps("../images/tree2.rgba", GL_RGBA)) { + fprintf(stderr, "Error reading a texture.\n"); + exit(-1); + } + } glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); |