diff options
author | Marek Olšák <marek.olsak@amd.com> | 2014-09-30 17:09:13 +0200 |
---|---|---|
committer | Marek Olšák <marek.olsak@amd.com> | 2014-10-04 15:16:14 +0200 |
commit | 10e386f4aa3ef8ce1c60ec5be0865cc61bd093e2 (patch) | |
tree | ab6f61d47bd2b5b834feb6b2861097561846747a /src/gallium/drivers/radeonsi/si_shader.h | |
parent | 0a2d6f0c4e2230739aad6b6938925bf91d55d9d4 (diff) | |
download | external_mesa3d-10e386f4aa3ef8ce1c60ec5be0865cc61bd093e2.zip external_mesa3d-10e386f4aa3ef8ce1c60ec5be0865cc61bd093e2.tar.gz external_mesa3d-10e386f4aa3ef8ce1c60ec5be0865cc61bd093e2.tar.bz2 |
radeonsi: remove interp_at_sample from the key, use TGSI_INTERPOLATE_LOC_SAMPLE
st/mesa has the same flag in its shader key, we don't need to do it
in the driver anymore.
Instead, use TGSI_INTERPOLATE_LOC_SAMPLE, which is what st/mesa sets.
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_shader.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader.h b/src/gallium/drivers/radeonsi/si_shader.h index c46e649..d9a89e3 100644 --- a/src/gallium/drivers/radeonsi/si_shader.h +++ b/src/gallium/drivers/radeonsi/si_shader.h @@ -137,7 +137,6 @@ union si_shader_key { unsigned color_two_side:1; unsigned alpha_func:3; unsigned flatshade:1; - unsigned interp_at_sample:1; unsigned alpha_to_one:1; } ps; struct { |