Просмотр исходного кода

Corrected bug on web

pull/66/head
Ray San 9 лет назад
Родитель
Сommit
fb4105cf8a
1 измененных файлов: 3 добавлений и 3 удалений
  1. +3
    -3
      src/textures.c

+ 3
- 3
src/textures.c Просмотреть файл

@ -1160,11 +1160,11 @@ void ImageColorBrightness(Image *image, int brightness)
void GenTextureMipmaps(Texture2D texture)
{
#if PLATFORM_WEB
int potWidth = GetNextPOT(image->width);
int potHeight = GetNextPOT(image->height);
int potWidth = GetNextPOT(texture.width);
int potHeight = GetNextPOT(texture.height);
// Check if texture is POT
if ((potWidth != image->width) || (potHeight != image->height))
if ((potWidth != texture.width) || (potHeight != texture.height))
{
TraceLog(WARNING, "Limited NPOT support, no mipmaps available for NPOT textures");
}

Загрузка…
Отмена
Сохранить