summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTimothy Arceri <timothy.arceri@collabora.com>2016-10-20 14:09:15 +1100
committerTimothy Arceri <timothy.arceri@collabora.com>2016-10-26 14:29:36 +1100
commitdfcbdba47119de6c1d81a869f8625bcc3d7560a2 (patch)
treefa1285c7784612f11d2fbe1ecba6908206fde255 /src
parent6c2fcf6a8a7bcecf27bf7a5fcb27f11a951f59ee (diff)
mesa/compiler: copy early fragment tests to shader_info in _mesa_copy_linked_program_data()
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Diffstat (limited to 'src')
-rw-r--r--src/compiler/shader_info.c4
-rw-r--r--src/mesa/main/shaderapi.c1
2 files changed, 1 insertions, 4 deletions
diff --git a/src/compiler/shader_info.c b/src/compiler/shader_info.c
index 49361bcbdf..34aaf9f21f 100644
--- a/src/compiler/shader_info.c
+++ b/src/compiler/shader_info.c
@@ -38,8 +38,4 @@ copy_shader_info(const struct gl_shader_program *shader_prog,
info->patch_outputs_written = sh->Program->PatchOutputsWritten;
info->system_values_read = sh->Program->SystemValuesRead;
info->uses_texture_gather = sh->Program->UsesGather;
-
- if (sh->Stage == MESA_SHADER_FRAGMENT) {
- sh->Program->info.fs.early_fragment_tests = sh->info.EarlyFragmentTests;
- }
}
diff --git a/src/mesa/main/shaderapi.c b/src/mesa/main/shaderapi.c
index 4996e8ed1d..73b8931bda 100644
--- a/src/mesa/main/shaderapi.c
+++ b/src/mesa/main/shaderapi.c
@@ -2197,6 +2197,7 @@ _mesa_copy_linked_program_data(const struct gl_shader_program *src,
}
case MESA_SHADER_FRAGMENT: {
dst->info.fs.depth_layout = src->FragDepthLayout;
+ dst->info.fs.early_fragment_tests = dst_sh->info.EarlyFragmentTests;
break;
}
case MESA_SHADER_COMPUTE: {