anv/device: Default to scalar GS on BDW+

This commit is contained in:
Jason Ekstrand 2016-01-20 11:16:44 -08:00
parent 34f9a5f301
commit e45748bade

View file

@ -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);