mirror of https://github.com/xemu-project/xemu.git
Merge pull request #12 from JayFoxRox/mipmap-fix
Fix GL3 mipmaps by forcing at least 1x1
This commit is contained in:
commit
ba0bb10c98
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue