summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_clip_tri.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2009-12-16 15:42:55 -0800
committerEric Anholt <eric@anholt.net>2009-12-22 14:20:27 -0800
commitcb3810dd19760797e699c47929f655b829c4d339 (patch)
tree5e488a5f8c8ad3a42f6669aec8611dad2ebad291 /src/mesa/drivers/dri/i965/brw_clip_tri.c
parent0b87f143c466f7e5bd730895ee29f1cd20a68f9b (diff)
downloadexternal_mesa3d-cb3810dd19760797e699c47929f655b829c4d339.zip
external_mesa3d-cb3810dd19760797e699c47929f655b829c4d339.tar.gz
external_mesa3d-cb3810dd19760797e699c47929f655b829c4d339.tar.bz2
intel: Replace IS_965 checks with context structure usage.
Saves another 600 bytes or so of code.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_clip_tri.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_clip_tri.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_clip_tri.c b/src/mesa/drivers/dri/i965/brw_clip_tri.c
index ec15e9a..cfbb8f2 100644
--- a/src/mesa/drivers/dri/i965/brw_clip_tri.c
+++ b/src/mesa/drivers/dri/i965/brw_clip_tri.c
@@ -572,6 +572,7 @@ void brw_emit_tri_clip( struct brw_clip_compile *c )
{
struct brw_instruction *neg_rhw;
struct brw_compile *p = &c->func;
+ struct brw_context *brw = p->brw;
brw_clip_tri_alloc_regs(c, 3 + c->key.nr_userclip + 6);
brw_clip_tri_init_vertices(c);
brw_clip_init_clipmask(c);
@@ -579,7 +580,7 @@ void brw_emit_tri_clip( struct brw_clip_compile *c )
/* if -ve rhw workaround bit is set,
do cliptest */
- if (BRW_IS_965(p->brw)) {
+ if (brw->has_negative_rhw_bug) {
brw_set_conditionalmod(p, BRW_CONDITIONAL_NZ);
brw_AND(p, brw_null_reg(), get_element_ud(c->reg.R0, 2),
brw_imm_ud(1<<20));