1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-25 22:53:19 +00:00

made RogueViz staircase compile without CAP_TEXTURE

This commit is contained in:
Zeno Rogue 2018-05-22 22:08:24 +02:00
parent d7884d7731
commit 41ba1d8da7

View File

@ -69,9 +69,12 @@ void addTri(hyperpoint h, hyperpoint hx, hyperpoint hy, hyperpoint v, hyperpoint
bool need_texture = true;
#if CAP_TEXTURE
texture::texture_data tdata; // = texture::config.data;
#endif
void make_texture() {
#if CAP_TEXTURE
printf("make texture\n");
need_texture = false;
tdata.whitetexture();
@ -96,6 +99,7 @@ void make_texture() {
}
tdata.loadTextureGL();
#endif
}
int savetex;
@ -135,7 +139,9 @@ void make_staircase() {
}
if(need_texture) {
make_texture();
#if CAP_TEXTURE
rug::alternate_texture = tdata.textureid;
#endif
}
rug::clear_model();
printf("compute\n");