diff options
author | Francisco Jerez <[email protected]> | 2015-06-10 14:40:33 +0300 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2015-06-12 11:17:25 +0300 |
commit | 8d3c48eed24f351c86361707978647c78010bb7f (patch) | |
tree | 29e9b8388741a868222ccfabacba50b5a9009c0b | |
parent | 16658f426dbd81fcbc317b21ae9a3f7c9b6448fb (diff) |
i965/fs: Remove one more fixed brw_null_reg() from the visitor.
Instead use fs_builder::null_reg_f() which has the correct register
width. Avoids the assertion failure in fs_builder::emit() hit by the
"ES3-CTS.shaders.loops.for_dynamic_iterations.unconditional_break_fragment"
GLES3 conformance test introduced by 4af4cfba9ee1014baa4a777660fc9d53d57e4c82.
Reported-and-reviewed-by: Tapani Pälli <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 7789ca77e57..5563c5aa76c 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -3234,7 +3234,7 @@ fs_visitor::lower_integer_multiplication() ibld.ADD(dst, low, high); if (inst->conditional_mod) { - fs_reg null(retype(brw_null_reg(), inst->dst.type)); + fs_reg null(retype(ibld.null_reg_f(), inst->dst.type)); set_condmod(inst->conditional_mod, ibld.MOV(null, inst->dst)); } |