diff options
author | Jason Ekstrand <[email protected]> | 2016-07-21 12:55:21 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-07-22 16:48:54 -0700 |
commit | 9f32721f8695f3e55849dce015da3b53d1af5d57 (patch) | |
tree | 84783e1f0dbd4ffb2da682f5f8dfeb75ae4cf7eb /src/mesa | |
parent | d9156efc5292b4ac7cea9d12e68882fc7b5da5fd (diff) |
i965/nir: Enable NIR lowering of txf and rect offsets
This fixes the following piglit tests on gen6+:
tex-miplevel-selection textureProjGradOffset 2DRect
tex-miplevel-selection textureGradOffset 2DRect
tex-miplevel-selection textureGradOffset 2DRectShadow
tex-miplevel-selection textureProjGradOffset 2DRect_ProjVec4
tex-miplevel-selection textureProjGradOffset 2DRectShadow
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Cc: "12.0" <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_nir.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_nir.c b/src/mesa/drivers/dri/i965/brw_nir.c index 388ae9e0386..d12a946f0ff 100644 --- a/src/mesa/drivers/dri/i965/brw_nir.c +++ b/src/mesa/drivers/dri/i965/brw_nir.c @@ -429,6 +429,8 @@ brw_preprocess_nir(const struct brw_compiler *compiler, nir_shader *nir) static const nir_lower_tex_options tex_options = { .lower_txp = ~0, + .lower_txf_offset = true, + .lower_rect_offset = true, }; OPT(nir_lower_tex, &tex_options); |