summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i965/brw_vs.h
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2006-10-05 11:28:45 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2006-10-05 11:28:45 +0000
commit496f9ddf351bd91ea17c257f94e3504e87992202 (patch)
tree44fce3fd53373a140d8024adcbcf53305f79d1e9 /src/mesa/drivers/dri/i965/brw_vs.h
parente7b0ec9ae79d4ec4aba402b9124fde55d914da92 (diff)
eliminate rhw divide under some circumstances
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vs.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vs.h b/src/mesa/drivers/dri/i965/brw_vs.h
index d355681b5e..fdb5785d67 100644
--- a/src/mesa/drivers/dri/i965/brw_vs.h
+++ b/src/mesa/drivers/dri/i965/brw_vs.h
@@ -43,7 +43,8 @@ struct brw_vs_prog_key {
GLuint program_string_id;
GLuint nr_userclip:4;
GLuint copy_edgeflag:1;
- GLuint pad:27;
+ GLuint know_w_is_one:1;
+ GLuint pad:26;
};