diff options
author | Paul Berry <[email protected]> | 2013-08-18 20:59:37 -0700 |
---|---|---|
committer | Paul Berry <[email protected]> | 2013-09-11 11:16:35 -0700 |
commit | 1a33e0233ad5bfd0b7f62ae25811532c5784653f (patch) | |
tree | e6c63931eb027db76b12fee797285353368db246 /src/mesa/main/shaderapi.c | |
parent | 79d9c6b7ffe32c146835d27431a66aaf413836fd (diff) |
glsl: During linking, record whether a GS uses EndPrimitive().
This information will be useful in the i965 back end, since we can
save some compilation effort if we know from the outset that the
shader never calls EndPrimitive().
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/shaderapi.c')
-rw-r--r-- | src/mesa/main/shaderapi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/shaderapi.c b/src/mesa/main/shaderapi.c index 4fe9d9ca252..a2386fb133e 100644 --- a/src/mesa/main/shaderapi.c +++ b/src/mesa/main/shaderapi.c @@ -1872,6 +1872,7 @@ _mesa_copy_linked_program_data(gl_shader_type type, dst_gp->InputType = src->Geom.InputType; dst_gp->OutputType = src->Geom.OutputType; dst_gp->UsesClipDistance = src->Geom.UsesClipDistance; + dst_gp->UsesEndPrimitive = src->Geom.UsesEndPrimitive; } break; default: |