]> git.tdb.fi Git - libs/gl.git/blobdiff - source/glsl/syntax.cpp
Implement tessellation shaders in the shader compiler
[libs/gl.git] / source / glsl / syntax.cpp
index b805a95aa47213af6942c9e377caa4a41ad70e0f..c37ad0895a86dfd09517b8a7d94d764c3fc4ed8f 100644 (file)
@@ -332,7 +332,7 @@ Stage::Stage(Stage::Type t):
 
 const char *Stage::get_stage_name(Type type)
 {
-       static const char *const names[] = { "shared", "vertex", "geometry", "fragment", "compute" };
+       static const char *const names[] = { "shared", "vertex", "tess_control", "tess_eval", "geometry", "fragment", "compute" };
        return names[type];
 }