summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.cpp b/src/video_core/renderer_opengl/gl_rasterizer.cpp
index 88d78d2ad..f20967d85 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer.cpp
+++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp
@@ -277,6 +277,14 @@ void RasterizerOpenGL::SetupShaders(GLenum primitive_mode) {
277 continue; 277 continue;
278 } 278 }
279 279
280 // Currently this stages are not supported in the OpenGL backend.
281 // Todo(Blinkhawk): Port tesselation shaders from Vulkan to OpenGL
282 if (program == Maxwell::ShaderProgram::TesselationControl) {
283 continue;
284 } else if (program == Maxwell::ShaderProgram::TesselationEval) {
285 continue;
286 }
287
280 Shader shader{shader_cache.GetStageProgram(program)}; 288 Shader shader{shader_cache.GetStageProgram(program)};
281 289
282 // Stage indices are 0 - 5 290 // Stage indices are 0 - 5