[Mesa-dev] [PATCH 2/2] radv: enable lowering of nir_op_bitfield_extract
Samuel Pitoiset
samuel.pitoiset at gmail.com
Tue Dec 5 17:50:22 UTC 2017
This instruction should also be lowered correctly.
Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
---
src/amd/vulkan/radv_shader.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c
index 0b19d23fa2..044bcd0641 100644
--- a/src/amd/vulkan/radv_shader.c
+++ b/src/amd/vulkan/radv_shader.c
@@ -67,6 +67,7 @@ static const struct nir_shader_compiler_options nir_options = {
.lower_extract_word = true,
.lower_ffma = true,
.lower_bitfield_insert = true,
+ .lower_bitfield_extract = true,
.max_unroll_iterations = 32
};
--
2.15.1
More information about the mesa-dev
mailing list