pan/bi: Lower uniforms to UBO

Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7472>
This commit is contained in:
Boris Brezillon 2020-11-06 09:56:09 +01:00
parent 09da82cbdc
commit fd265fa020

View File

@ -70,10 +70,12 @@ static const nir_shader_compiler_options bifrost_nir_options = {
.lower_bitfield_extract_to_shifts = true,
.vectorize_io = true,
.fuse_ffma16 = true,
.fuse_ffma32 = true,
.fuse_ffma64 = true,
.use_interpolated_input_intrinsics = true
.fuse_ffma16 = true,
.fuse_ffma32 = true,
.fuse_ffma64 = true,
.use_interpolated_input_intrinsics = true,
.lower_uniforms_to_ubo = true,
};
#endif