summaryrefslogtreecommitdiff
path: root/i965/brw_sf.h
diff options
context:
space:
mode:
Diffstat (limited to 'i965/brw_sf.h')
-rw-r--r--i965/brw_sf.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/i965/brw_sf.h b/i965/brw_sf.h
index 6426b6d..0ba731f 100644
--- a/i965/brw_sf.h
+++ b/i965/brw_sf.h
@@ -45,19 +45,19 @@
#define SF_UNFILLED_TRIS 3
struct brw_sf_prog_key {
- GLuint attrs:32;
+ GLbitfield64 attrs;
GLuint primitive:2;
GLuint do_twoside_color:1;
GLuint do_flat_shading:1;
GLuint frontface_ccw:1;
GLuint do_point_sprite:1;
GLuint linear_color:1; /**< linear interp vs. perspective interp */
- GLuint pad:25;
- GLenum SpriteOrigin;
+ GLuint sprite_origin_lower_left:1;
+ GLuint pad:24;
};
struct brw_sf_point_tex {
- GLboolean CoordReplace;
+ GLboolean CoordReplace;
};
struct brw_sf_compile {