Merge pull request #12 from JayFoxRox/mipmap-fix

Fix GL3 mipmaps by forcing at least 1x1
This commit is contained in:
espes 2015-07-14 02:39:28 +10:00
commit ba0bb10c98
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) {