Fix GL3 mipmaps by forcing at least 1x1

This commit is contained in:
Jannik Vogel 2015-07-13 12:16:39 +02:00
parent 23c9ee9517
commit bd5cb25887
1 changed files with 2 additions and 0 deletions

View File

@ -1982,6 +1982,8 @@ static TextureBinding* generate_texture(const TextureShape s,
int level;
for (level = 0; level < s.levels; level++) {
if (width < 1) width = 1;
if (height < 1) height = 1;
if (f.gl_format == 0) { /* retarded way of indicating compressed */
unsigned int block_size;
if (f.gl_internal_format == GL_COMPRESSED_RGBA_S3TC_DXT1_EXT) {