From a1363038ae828acd1b2c722899a1cd60abdf7d6f Mon Sep 17 00:00:00 2001 From: zmertens Date: Sun, 10 Nov 2024 08:22:37 -0700 Subject: [PATCH] Update sdl3-opengl3 android attributes --- examples/example_sdl3_opengl3/main.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/examples/example_sdl3_opengl3/main.cpp b/examples/example_sdl3_opengl3/main.cpp index 4cf72e7b0..bf1aa534a 100644 --- a/examples/example_sdl3_opengl3/main.cpp +++ b/examples/example_sdl3_opengl3/main.cpp @@ -52,6 +52,13 @@ int main(int, char**) SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE); SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3); SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 2); +#elif defined(__ANDROID__) + // GLES 3.0 + GLSL 100 + const char* glsl_version = "#version 100"; + SDL_GL_SetAttribute(SDL_GL_CONTEXT_FLAGS, 0); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_ES); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 0); #else // GL 3.0 + GLSL 130 const char* glsl_version = "#version 130";