summaryrefslogtreecommitdiff
path: root/src/intel
diff options
context:
space:
mode:
authorGert Wollny <gert.wollny@collabora.com>2020-09-13 21:28:02 +0200
committerMarge Bot <eric+marge@anholt.net>2020-09-16 10:07:42 +0000
commit80cde3ad55c6eb6aed9fbe9c4d2c6a8c4eceb61a (patch)
tree80dc18b28f8684bcbc1a62193856a9b056e72686 /src/intel
parent7ab804dbb46ff55ad28c639f04fd050b9959fc6c (diff)
intel/compiler: Set lower_uniform_to_ubo compiler flag
Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6316>
Diffstat (limited to 'src/intel')
-rw-r--r--src/intel/compiler/brw_compiler.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_compiler.c b/src/intel/compiler/brw_compiler.c
index 4393e5dcd2a..f31d4f89fe8 100644
--- a/src/intel/compiler/brw_compiler.c
+++ b/src/intel/compiler/brw_compiler.c
@@ -50,7 +50,8 @@
.lower_base_vertex = true, \
.use_scoped_barrier = true, \
.support_8bit_alu = true, \
- .support_16bit_alu = true
+ .support_16bit_alu = true, \
+ .lower_uniforms_to_ubo = true
#define COMMON_SCALAR_OPTIONS \
.lower_to_scalar = true, \