Преглед на файлове

GetImageData() returns NULL if image size is 0

pull/1071/head
Ray преди 5 години
родител
ревизия
4525c897e2
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. +2
    -2
      src/textures.c

+ 2
- 2
src/textures.c Целия файл

@ -457,9 +457,9 @@ void UnloadRenderTexture(RenderTexture2D target)
// Get pixel data from image in the form of Color struct array
Color *GetImageData(Image image)
{
if ((image.width == 0) || (image.height == 0)) return NULL;
Color *pixels = (Color *)RL_MALLOC(image.width*image.height*sizeof(Color));
if (pixels == NULL) return pixels;
if (image.format >= COMPRESSED_DXT1_RGB) TraceLog(LOG_WARNING, "Pixel data retrieval not supported for compressed image formats");
else

Зареждане…
Отказ
Запис