2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-23 02:15:55 +01:00

ref_gl: fix wrong texture resampling condition

This commit is contained in:
Alibek Omarov 2019-10-10 06:02:26 +03:00
parent 2183240221
commit a5fa4df37c

View File

@ -1188,7 +1188,7 @@ static qboolean GL_UploadTexture( gl_texture_t *tex, rgbdata_t *pic )
int mipCount = GL_CalcMipmapCount( tex, ( buf != NULL ));
// NOTE: only single uncompressed textures can be resamples, no mips, no layers, no sides
if((( tex->depth == 1 ) && ( pic->width != tex->width )) || ( pic->height != tex->height ))
if(( tex->depth == 1 ) && (( pic->width != tex->width ) || ( pic->height != tex->height )))
data = GL_ResampleTexture( buf, pic->width, pic->height, tex->width, tex->height, normalMap );
else data = buf;