From 5258e102715ffa847cc58a6bad722d8dc00e83f6 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Mon, 11 Mar 2019 06:06:51 +0000 Subject: [PATCH] Fix some GL ES compilation issues in polymost.cpp git-svn-id: https://svn.eduke32.com/eduke32@7395 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/src/polymost.cpp | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/source/build/src/polymost.cpp b/source/build/src/polymost.cpp index 80de189b9..d27788e7b 100644 --- a/source/build/src/polymost.cpp +++ b/source/build/src/polymost.cpp @@ -1579,7 +1579,16 @@ static int32_t const comprtexfmts_rgb[] = { GL_ETC1_RGB8_OES, 0 }; static int32_t const comprtexfmts_rgba[] = { 0 }; static int32_t const comprtexfmts_rgb_mask[] = { 0 }; #else -static int32_t const comprtexfmts_rgb[] = { GL_COMPRESSED_RGB8_ETC2, GL_ETC1_RGB8_OES, 0 }; +static int32_t const comprtexfmts_rgb[] = +{ +#ifdef GL_COMPRESSED_RGB8_ETC2 + GL_COMPRESSED_RGB8_ETC2, +#endif +#ifdef GL_ETC1_RGB8_OES + GL_ETC1_RGB8_OES, +#endif + 0 + }; // TODO: waiting on etcpak support for ETC2 with alpha static int32_t const comprtexfmts_rgba[] = { /*GL_COMPRESSED_RGBA8_ETC2_EAC,*/ 0 }; static int32_t const comprtexfmts_rgb_mask[] = { /*GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2,*/ 0 }; @@ -1604,16 +1613,21 @@ static ETCFunction_t Polymost_PickETCFunction(int32_t const comprtexfmt) { switch (comprtexfmt) { +# ifdef GL_ETC1_RGB8_OES case GL_ETC1_RGB8_OES: return ProcessRGB; +# endif +# ifdef GL_COMPRESSED_RGB8_ETC2 case GL_COMPRESSED_RGB8_ETC2: return ProcessRGB_ETC2; +# endif # if 0 case GL_COMPRESSED_RGBA8_ETC2_EAC: - + fallthrough__; case GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2: + fallthrough__; # endif default: @@ -1771,6 +1785,7 @@ void uploadtexture(int32_t doalloc, vec2_t siz, int32_t texfmt, else intexfmt = GL_RGBA8; #else + const int hasalpha = !!(dameth & (DAMETH_HASALPHA|DAMETH_ONEBITALPHA)); const int onebitalpha = !!(dameth & DAMETH_ONEBITALPHA); int32_t const intexfmt = hasalpha ? (onebitalpha ? texfmt_rgb_mask : texfmt_rgba) : texfmt_rgb;