diff options
author | Eric Anholt <[email protected]> | 2012-11-29 16:51:13 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-12-03 13:19:46 -0800 |
commit | 0f06864ba566eaff5b739a9d0fba5ed7eaadd60b (patch) | |
tree | 68264a6194cf7f73d5b1058e055001b640baf2cf /src/mesa | |
parent | 1db9a72351e15d826950fab45889cdabb54c80b4 (diff) |
i965: Don't leak the IR annotation into later instructions.
After walking our IR instructions (Mesa or GLSL), we don't want to also
mark the start of the FB/URB writes or whatever as being that IR. This
can end up being misleading when the end of the IR visit got copy
propagated out to a later instruction in the URB writes.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 1 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index ee3b7fd9be6..b777172c239 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -2158,6 +2158,7 @@ fs_visitor::run() } else { emit_fragment_program_code(); } + base_ir = NULL; if (failed) return false; diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp b/src/mesa/drivers/dri/i965/brw_vec4.cpp index 34c34d79399..1a199d6e822 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp @@ -1052,6 +1052,7 @@ vec4_visitor::run() } else { emit_vertex_program_code(); } + base_ir = NULL; if (c->key.userclip_active && !c->key.uses_clip_distance) setup_uniform_clipplane_values(); |