diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2015-09-08 02:38:54 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2015-09-08 02:38:54 -0500 |
| commit | 2e02de65875f7229bc2c5c2b0cbc664d48073be0 (patch) | |
| tree | 1d4bd2b452671688d9117b6d3b2bf6d5d0af100a /Source/Core/VideoBackends/OGL | |
| parent | 332e81d2d7f64dd31401cbdedf4586361e16aef1 (diff) | |
| parent | bfb544e1fbe4ce55a59d470309e06dc2c22600fb (diff) | |
Merge pull request #2998 from Sonicadvance1/GLES_BBox
[GLES] Enable bounding box support.
Diffstat (limited to 'Source/Core/VideoBackends/OGL')
| -rw-r--r-- | Source/Core/VideoBackends/OGL/Render.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoBackends/OGL/Render.cpp b/Source/Core/VideoBackends/OGL/Render.cpp index 117c6f1bdc..2b45508182 100644 --- a/Source/Core/VideoBackends/OGL/Render.cpp +++ b/Source/Core/VideoBackends/OGL/Render.cpp @@ -491,6 +491,7 @@ Renderer::Renderer() g_Config.backend_info.bSupportsGeometryShaders = g_ogl_config.bSupportsAEP; g_Config.backend_info.bSupportsGSInstancing = g_Config.backend_info.bSupportsGeometryShaders && g_ogl_config.SupportedESPointSize > 0; g_Config.backend_info.bSupportsSSAA = g_ogl_config.bSupportsAEP; + g_Config.backend_info.bSupportsBBox = true; g_ogl_config.bSupportsMSAA = true; g_ogl_config.bSupports2DTextureStorage = true; if (g_ActiveConfig.iStereoMode > 0 && g_ActiveConfig.iMultisampleMode > 1 && !g_ogl_config.bSupports3DTextureStorage) @@ -510,6 +511,7 @@ Renderer::Renderer() g_Config.backend_info.bSupportsGSInstancing = g_ogl_config.SupportedESPointSize > 0; g_Config.backend_info.bSupportsPaletteConversion = true; g_Config.backend_info.bSupportsSSAA = true; + g_Config.backend_info.bSupportsBBox = true; g_ogl_config.bSupportsCopySubImage = true; g_ogl_config.bSupportsGLBaseVertex = true; g_ogl_config.bSupportsDebug = true; |
