summaryrefslogtreecommitdiffstats
path: root/src/compiler/shader_info.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/shader_info.c')
-rw-r--r--src/compiler/shader_info.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/compiler/shader_info.c b/src/compiler/shader_info.c
index 2da97578548..3ec1e8ad6d5 100644
--- a/src/compiler/shader_info.c
+++ b/src/compiler/shader_info.c
@@ -40,6 +40,17 @@ copy_shader_info(const struct gl_shader_program *shader_prog,
info->uses_texture_gather = sh->Program->UsesGather;
switch (sh->Stage) {
+ case MESA_SHADER_TESS_EVAL: {
+ struct gl_tess_eval_program *tep =
+ (struct gl_tess_eval_program *)sh->Program;
+
+ info->tes.primitive_mode = tep->PrimitiveMode;
+ info->tes.spacing = tep->Spacing;
+ info->tes.vertex_order = tep->VertexOrder;
+ info->tes.point_mode = tep->PointMode;
+ break;
+ }
+
case MESA_SHADER_GEOMETRY:
info->gs.vertices_in = shader_prog->Geom.VerticesIn;
info->gs.output_primitive = sh->info.Geom.OutputType;