summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/i965simple/brw_eu.h
diff options
context:
space:
mode:
authorBen Skeggs <skeggsb@gmail.com>2007-12-15 09:48:11 +1100
committerBen Skeggs <skeggsb@gmail.com>2007-12-15 09:48:11 +1100
commitb5b9ac62e6a9667de4bb2078d5cd3199fe25f619 (patch)
tree5c3f389d10132cd2c9733c5c0f3d81a657298f53 /src/mesa/pipe/i965simple/brw_eu.h
parent7f89c776e19b400c0adf647fc9dfb392efe88dbd (diff)
parent017f862de1f857bca29f09794539aaf411014f13 (diff)
Merge branch 'upstream-gallium-0.1' into darktama-gallium-0.1
Diffstat (limited to 'src/mesa/pipe/i965simple/brw_eu.h')
-rw-r--r--src/mesa/pipe/i965simple/brw_eu.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/pipe/i965simple/brw_eu.h b/src/mesa/pipe/i965simple/brw_eu.h
index 111edb1506..23151ae9ed 100644
--- a/src/mesa/pipe/i965simple/brw_eu.h
+++ b/src/mesa/pipe/i965simple/brw_eu.h
@@ -694,6 +694,17 @@ void brw_init_compile( struct brw_compile *p );
const unsigned *brw_get_program( struct brw_compile *p, unsigned *sz );
+struct brw_instruction *brw_alu1( struct brw_compile *p,
+ unsigned opcode,
+ struct brw_reg dest,
+ struct brw_reg src );
+
+struct brw_instruction *brw_alu2(struct brw_compile *p,
+ unsigned opcode,
+ struct brw_reg dest,
+ struct brw_reg src0,
+ struct brw_reg src1 );
+
/* Helpers for regular instructions:
*/
#define ALU1(OP) \