diff options
author | Kenneth Graunke <[email protected]> | 2011-10-26 12:59:33 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2011-12-18 12:38:56 -0800 |
commit | 7e7c40ff98cc2b930bc3113609ace5430f2bdc95 (patch) | |
tree | 78798abbeb1f11e30a2cc3e5540695be4803703c /src/mesa/drivers/dri/i965/brw_vec4.h | |
parent | febad1779ae5cb5c85d66c2635baea62da52d2fa (diff) |
i965/vs: Add vec4_instruction::is_tex() query.
Copy and pasted from fs_inst::is_tex(), but without TXB.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.h b/src/mesa/drivers/dri/i965/brw_vec4.h index 93ccda9548a..eb90253543e 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4.h +++ b/src/mesa/drivers/dri/i965/brw_vec4.h @@ -276,6 +276,7 @@ public: ir_instruction *ir; const char *annotation; + bool is_tex(); bool is_math(); }; |