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, 0 insertions, 11 deletions
diff --git a/src/compiler/shader_info.c b/src/compiler/shader_info.c
index 3ec1e8ad6d5..2da97578548 100644
--- a/src/compiler/shader_info.c
+++ b/src/compiler/shader_info.c
@@ -40,17 +40,6 @@ 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;