mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-30 18:00:24 +01:00
pvr: Fix missing BITFIELD_BIT for winsys frag job flag
On submission SPMSCRATCHBUFFER was acting like GET_VIS_RESULT + DEPTH_BUFFER_PRESENT. This was causing hardware resets on barrier stores as the depth buffer isn't actually present so the store would be carried out to a NULL address. Signed-off-by: Karmjit Mahil <Karmjit.Mahil@imgtec.com> Reviewed-by: Frank Binns <frank.binns@imgtec.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23765>
This commit is contained in:
parent
739ba18c79
commit
4e6444af0b
1 changed files with 1 additions and 1 deletions
|
|
@ -325,7 +325,7 @@ struct pvr_winsys_compute_submit_info {
|
|||
#define PVR_WINSYS_FRAG_FLAG_PREVENT_CDM_OVERLAP BITFIELD_BIT(2U)
|
||||
#define PVR_WINSYS_FRAG_FLAG_SINGLE_CORE BITFIELD_BIT(3U)
|
||||
#define PVR_WINSYS_FRAG_FLAG_GET_VIS_RESULTS BITFIELD_BIT(4U)
|
||||
#define PVR_WINSYS_FRAG_FLAG_SPMSCRATCHBUFFER (5U)
|
||||
#define PVR_WINSYS_FRAG_FLAG_SPMSCRATCHBUFFER BITFIELD_BIT(5U)
|
||||
|
||||
struct pvr_winsys_render_submit_info {
|
||||
struct pvr_winsys_rt_dataset *rt_dataset;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue