summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_atom_rasterizer.c
diff options
context:
space:
mode:
authorRoland Scheidegger <sroland@tungstengraphics.com>2008-07-02 20:08:27 +0200
committerRoland Scheidegger <sroland@tungstengraphics.com>2008-07-02 20:22:08 +0200
commit489fc4d10a57538de59a89e19ce752e4b7253d22 (patch)
treeacd00293c4e71f1e49da222dc840b4bbb2086f93 /src/mesa/state_tracker/st_atom_rasterizer.c
parentcc31eecbcb90dabacabac3e6be7c01cfe3a7a2a6 (diff)
mesa: fix issues around multisample enable
multisample enable is enabled by default, however gl mandates multisample rendering rules only apply if there's also a multisampled buffer.
Diffstat (limited to 'src/mesa/state_tracker/st_atom_rasterizer.c')
-rw-r--r--src/mesa/state_tracker/st_atom_rasterizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_atom_rasterizer.c b/src/mesa/state_tracker/st_atom_rasterizer.c
index 87a91d56d0..ff40bb4312 100644
--- a/src/mesa/state_tracker/st_atom_rasterizer.c
+++ b/src/mesa/state_tracker/st_atom_rasterizer.c
@@ -254,7 +254,7 @@ static void update_raster_state( struct st_context *st )
raster->line_stipple_factor = ctx->Line.StippleFactor - 1;
/* _NEW_MULTISAMPLE */
- if (ctx->Multisample.Enabled)
+ if (ctx->Multisample._Enabled)
raster->multisample = 1;
/* _NEW_SCISSOR */