diff options
author | Kenneth Graunke <[email protected]> | 2013-07-03 11:55:59 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-07-09 14:09:03 -0700 |
commit | fe0a8cb30dd53bed0d024b01e2c2b60911a3c526 (patch) | |
tree | 390b2e98dd9d7d14b539618850ccbeb794fde9a9 /src/mesa/drivers/dri/i965/brw_sf.c | |
parent | 9147b4049658fe2401c19e03d20220aeea0fafc6 (diff) |
i965: Move intel_context::reduced_primitive to brw_context.
Signed-off-by: Kenneth Graunke <[email protected]>
Acked-by: Chris Forbes <[email protected]>
Acked-by: Paul Berry <[email protected]>
Acked-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_sf.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_sf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_sf.c b/src/mesa/drivers/dri/i965/brw_sf.c index ba8782b6d0c..291a2896c87 100644 --- a/src/mesa/drivers/dri/i965/brw_sf.c +++ b/src/mesa/drivers/dri/i965/brw_sf.c @@ -148,7 +148,7 @@ brw_upload_sf_prog(struct brw_context *brw) key.attrs = brw->vue_map_geom_out.slots_valid; /* BRW_NEW_REDUCED_PRIMITIVE */ - switch (brw->intel.reduced_primitive) { + switch (brw->reduced_primitive) { case GL_TRIANGLES: /* NOTE: We just use the edgeflag attribute as an indicator that * unfilled triangles are active. We don't actually do the |