[Mesa-dev] [PATCH 13/42] mesa: copy tes metadata directly to shared shader info

Timothy Arceri timothy.arceri at collabora.com
Wed Oct 19 23:09:30 UTC 2016


---
 src/compiler/shader_info.c | 11 -----------
 src/mesa/main/shaderapi.c  | 11 ++++-------
 2 files changed, 4 insertions(+), 18 deletions(-)

diff --git a/src/compiler/shader_info.c b/src/compiler/shader_info.c
index 3ec1e8a..2da9757 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;
diff --git a/src/mesa/main/shaderapi.c b/src/mesa/main/shaderapi.c
index 7a6f1e0..abfeeff 100644
--- a/src/mesa/main/shaderapi.c
+++ b/src/mesa/main/shaderapi.c
@@ -2175,13 +2175,10 @@ _mesa_copy_linked_program_data(const struct gl_shader_program *src,
       break;
    }
    case MESA_SHADER_TESS_EVAL: {
-      struct gl_tess_eval_program *dst_tep =
-         (struct gl_tess_eval_program *) dst;
-
-      dst_tep->PrimitiveMode = dst_sh->info.TessEval.PrimitiveMode;
-      dst_tep->Spacing = dst_sh->info.TessEval.Spacing;
-      dst_tep->VertexOrder = dst_sh->info.TessEval.VertexOrder;
-      dst_tep->PointMode = dst_sh->info.TessEval.PointMode;
+      dst->info.tes.primitive_mode = dst_sh->info.TessEval.PrimitiveMode;
+      dst->info.tes.spacing = dst_sh->info.TessEval.Spacing;
+      dst->info.tes.vertex_order = dst_sh->info.TessEval.VertexOrder;
+      dst->info.tes.point_mode = dst_sh->info.TessEval.PointMode;
       dst->ClipDistanceArraySize = src->TessEval.ClipDistanceArraySize;
       dst->CullDistanceArraySize = src->TessEval.CullDistanceArraySize;
       break;
-- 
2.7.4



More information about the mesa-dev mailing list