mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-20 06:08:30 +02:00
anv: fix use of comma operator
This doesn't fix any bug at the moment because the next statement is 'true' which happens to be APIMODE_D3D, but if that changes it could. The fixes tags is as far I could go but the error predates it (2016 is probably far enough). Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Fixes:8db6f2e6eb("anv/pipeline: Roll genX_pipeline_util.h into genX_pipeline.c") Reviewed-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> (cherry picked from commit772a5f9814) [Juan A. Suarez: resolve trivial conflicts] Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com> Conflicts: src/intel/vulkan/genX_pipeline.c
This commit is contained in:
parent
aff5714c65
commit
dccd75b60c
1 changed files with 1 additions and 1 deletions
|
|
@ -1075,7 +1075,7 @@ emit_3dstate_clip(struct anv_pipeline *pipeline,
|
|||
clip.ClipEnable = true;
|
||||
clip.StatisticsEnable = true;
|
||||
clip.EarlyCullEnable = true;
|
||||
clip.APIMode = APIMODE_D3D,
|
||||
clip.APIMode = APIMODE_D3D;
|
||||
clip.ViewportXYClipTestEnable = true;
|
||||
|
||||
#if GEN_GEN >= 8
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue