diff --git a/app/streaming/session.cpp b/app/streaming/session.cpp index ef65cca7..5f36ed71 100644 --- a/app/streaming/session.cpp +++ b/app/streaming/session.cpp @@ -1838,6 +1838,10 @@ void Session::execInternal() SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); + // Disable depth and stencil buffers + SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 0); + SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 0); + // We always want a resizable window with High DPI enabled Uint32 defaultWindowFlags = SDL_WINDOW_ALLOW_HIGHDPI | SDL_WINDOW_RESIZABLE;