diff options
author | David Snopek <dsnopek@gmail.com> | 2024-06-22 15:55:48 -0500 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2024-06-24 10:57:22 -0500 |
commit | 8e242fe7c11cb1a6853c0658290b27678558e400 (patch) | |
tree | 9d708bc70b58667fb529e7a87fbbdccea3d93ecc /drivers/gles3 | |
parent | 8a6c1e8f5232ff3b3a5eac024d590e7479b29e90 (diff) | |
download | redot-engine-8e242fe7c11cb1a6853c0658290b27678558e400.tar.gz |
Disable `*glGetProcAddress()` on the web
Diffstat (limited to 'drivers/gles3')
-rw-r--r-- | drivers/gles3/rasterizer_gles3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gles3/rasterizer_gles3.cpp b/drivers/gles3/rasterizer_gles3.cpp index ae39c86d44..5ff95391a2 100644 --- a/drivers/gles3/rasterizer_gles3.cpp +++ b/drivers/gles3/rasterizer_gles3.cpp @@ -72,7 +72,7 @@ #if !defined(IOS_ENABLED) && !defined(WEB_ENABLED) // We include EGL below to get debug callback on GLES2 platforms, -// but EGL is not available on iOS. +// but EGL is not available on iOS or the web. #define CAN_DEBUG #endif |