summaryrefslogtreecommitdiffstats
path: root/src/compiler
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2016-10-19 11:11:28 +1100
committerTimothy Arceri <[email protected]>2016-10-26 14:29:36 +1100
commit750b14ed8e6ff539f17069dec63004159575ccd8 (patch)
tree6b29bb64c91be9e7fef5fd4612eaa325d29e6473 /src/compiler
parent7a4bbfa90d221c43509a1eb46243235869bfa5e8 (diff)
mesa: set tcs shader_info metadata directly
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/shader_info.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/compiler/shader_info.c b/src/compiler/shader_info.c
index ebd9caf1f24..2da97578548 100644
--- a/src/compiler/shader_info.c
+++ b/src/compiler/shader_info.c
@@ -40,10 +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_CTRL:
- info->tcs.vertices_out = sh->info.TessCtrl.VerticesOut;
- break;
-
case MESA_SHADER_GEOMETRY:
info->gs.vertices_in = shader_prog->Geom.VerticesIn;
info->gs.output_primitive = sh->info.Geom.OutputType;