summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i965/brw_wm.h
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2009-08-11 17:52:44 -0700
committerEric Anholt <eric@anholt.net>2009-11-06 21:08:54 -0800
commit06c1bc8a2222f00e5a51fa977130a719bdcd8f0b (patch)
treecbe596e2740bdd334dbf219a19c47db2579e2d4d /src/mesa/drivers/dri/i965/brw_wm.h
parent90629704ef51de4018055ee4b8ff68531f6712ae (diff)
i965: Add generic GLSL code for unaliasing a 3-arg opcode, and share LRP code.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_wm.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_wm.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm.h b/src/mesa/drivers/dri/i965/brw_wm.h
index 93f79dbfe5..66902bab65 100644
--- a/src/mesa/drivers/dri/i965/brw_wm.h
+++ b/src/mesa/drivers/dri/i965/brw_wm.h
@@ -330,5 +330,11 @@ void emit_ddxy(struct brw_compile *p,
GLuint mask,
GLboolean is_ddx,
const struct brw_reg *arg0);
+void emit_lrp(struct brw_compile *p,
+ const struct brw_reg *dst,
+ GLuint mask,
+ const struct brw_reg *arg0,
+ const struct brw_reg *arg1,
+ const struct brw_reg *arg2);
#endif