lima/ppir: enable lower_fdph

Otherwise we may lower some fdot to fdph which is not implemented in pp.

Fixes #2126

Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
Reviewed-by: Vasily Khoruzhick <anarsoul@gmail.com>
This commit is contained in:
Erico Nunes
2019-12-10 19:08:29 +01:00
parent 11f736a6f9
commit 7701b7b7ee

View File

@@ -68,6 +68,7 @@ static const nir_shader_compiler_options fs_nir_options = {
.lower_fsign = true, .lower_fsign = true,
.lower_rotate = true, .lower_rotate = true,
.lower_fdot = true, .lower_fdot = true,
.lower_fdph = true,
.lower_bitops = true, .lower_bitops = true,
.lower_vector_cmp = true, .lower_vector_cmp = true,
}; };