aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2016-10-19 10:29:56 +1100
committerTimothy Arceri <[email protected]>2016-10-26 14:29:36 +1100
commit65225c20c64dd5980f4e3a4eaecb9088aabea2fb (patch)
tree5a347271bd1082d995da9786a1e4e833f35a3598 /src/mesa/main
parent2be3dbd90bff02fc6d1dd9f0d332c619d5f6ac86 (diff)
mesa: copy tes metadata directly to shared shader info
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/shaderapi.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/mesa/main/shaderapi.c b/src/mesa/main/shaderapi.c
index 7a6f1e0b445..abfeeffbb7d 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;