mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
r300: fix usage of COVERED_PTR_MASKING_ENABLE for r500
http://developer.amd.com/wordpress/media/2013/10/ R5xx_Acceleration_v1.5.pdf On page 281 you can see that register ZB:ZB_BW_CNTL is using 19th bit for enabling this feature on r500. Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12861>
This commit is contained in:
parent
3bb5082900
commit
765b3b3b11
1 changed files with 2 additions and 2 deletions
|
|
@ -2666,8 +2666,8 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
# define R500_CONTIGUOUS_6XAA_SAMPLES_DISABLE (1 << 17)
|
||||
# define R500_PEQ_PACKING_DISABLE (0 << 18)
|
||||
# define R500_PEQ_PACKING_ENABLE (1 << 18)
|
||||
# define R500_COVERED_PTR_MASKING_DISABLE (0 << 18)
|
||||
# define R500_COVERED_PTR_MASKING_ENABLE (1 << 18)
|
||||
# define R500_COVERED_PTR_MASKING_DISABLE (0 << 19)
|
||||
# define R500_COVERED_PTR_MASKING_ENABLE (1 << 19)
|
||||
|
||||
|
||||
/* gap */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue