mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 16:10:09 +01:00
brw: always ensure coarse pixel is disabled on Gfx9
No HW support there. Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Ivan Briano <ivan.briano@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36457>
This commit is contained in:
parent
aa6810b706
commit
60932e8fae
1 changed files with 2 additions and 1 deletions
|
|
@ -1058,7 +1058,8 @@ brw_nir_populate_wm_prog_data(nir_shader *shader,
|
|||
prog_data->sample_shading ||
|
||||
prog_data->uses_sample_mask ||
|
||||
(prog_data->computed_depth_mode != BRW_PSCDEPTH_OFF) ||
|
||||
prog_data->computed_stencil) {
|
||||
prog_data->computed_stencil ||
|
||||
devinfo->ver < 11) {
|
||||
prog_data->coarse_pixel_dispatch = INTEL_NEVER;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue