mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
anv/device: Default to scalar GS on BDW+
This commit is contained in:
parent
34f9a5f301
commit
e45748bade
1 changed files with 5 additions and 0 deletions
|
|
@ -30,6 +30,7 @@
|
|||
#include "anv_private.h"
|
||||
#include "mesa/main/git_sha1.h"
|
||||
#include "util/strtod.h"
|
||||
#include "util/debug.h"
|
||||
|
||||
#include "gen7_pack.h"
|
||||
|
||||
|
|
@ -137,6 +138,10 @@ anv_physical_device_init(struct anv_physical_device *device,
|
|||
device->compiler->shader_debug_log = compiler_debug_log;
|
||||
device->compiler->shader_perf_log = compiler_perf_log;
|
||||
|
||||
/* Default to use scalar GS on BDW+ */
|
||||
device->compiler->scalar_stage[MESA_SHADER_GEOMETRY] =
|
||||
device->info->gen >= 8 && env_var_as_boolean("INTEL_SCALAR_GS", true);
|
||||
|
||||
/* XXX: Actually detect bit6 swizzling */
|
||||
isl_device_init(&device->isl_dev, device->info, swizzled);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue