mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 19:20:12 +01:00
anv/gen7: Fix pipeline selection in init_device_state()
We need the 3D pipeline for the initial setup, not GPGPU.
This commit is contained in:
parent
ea694637ac
commit
ac4fd0ed21
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ genX(init_device_state)(struct anv_device *device)
|
|||
batch.end = (void *) cmds + sizeof(cmds);
|
||||
|
||||
anv_batch_emit(&batch, GEN7_PIPELINE_SELECT,
|
||||
.PipelineSelection = GPGPU);
|
||||
.PipelineSelection = _3D);
|
||||
|
||||
anv_batch_emit(&batch, GENX(3DSTATE_VF_STATISTICS),
|
||||
.StatisticsEnable = true);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue