summaryrefslogtreecommitdiffhomepage
path: root/src/textures.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-09-14 16:03:45 +0200
committerraysan5 <[email protected]>2020-09-14 16:03:45 +0200
commit50736199620240c00e36a9168cde0b1ff47c5034 (patch)
treec27142050013718149ca9f89791243c98955358e /src/textures.c
parent43b9113c0c776d7b1b7f6205dbf9816ca237e808 (diff)
downloadraylib-50736199620240c00e36a9168cde0b1ff47c5034.tar.gz
raylib-50736199620240c00e36a9168cde0b1ff47c5034.zip
REVIEWED: GetTextureData(), allow retrieving 32bit float data
Diffstat (limited to 'src/textures.c')
-rw-r--r--src/textures.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textures.c b/src/textures.c
index 982a97ed..2ffd804c 100644
--- a/src/textures.c
+++ b/src/textures.c
@@ -2835,7 +2835,7 @@ Image GetTextureData(Texture2D texture)
{
Image image = { 0 };
- if (texture.format < 8)
+ if (texture.format < COMPRESSED_DXT1_RGB)
{
image.data = rlReadTexturePixels(texture);