diff options
author | marha <marha@users.sourceforge.net> | 2012-10-22 08:28:32 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-10-22 08:28:32 +0200 |
commit | 34d741a3fc96c9424ffec29b114a1bdfde40f8b0 (patch) | |
tree | d879a3545ce91989c4fa621001eb7a44b2244cec /mesalib/src/mesa/state_tracker/st_atom_msaa.c | |
parent | ded57b5a4131a213d57f5a20d50b819b7a8924df (diff) | |
download | vcxsrv-34d741a3fc96c9424ffec29b114a1bdfde40f8b0.tar.gz vcxsrv-34d741a3fc96c9424ffec29b114a1bdfde40f8b0.tar.bz2 vcxsrv-34d741a3fc96c9424ffec29b114a1bdfde40f8b0.zip |
libX11 mesa pixman git update 22 oct 2012
libX11: f2a8def423a46d52e834cf7ea49fa0079427663a
mesa: 259fc154f1fdcabbc0a6c02c524962b063f9dee6
pixman: 31e5a0a393defb8e0534ab1bde29ab23fc04795d
Diffstat (limited to 'mesalib/src/mesa/state_tracker/st_atom_msaa.c')
-rw-r--r-- | mesalib/src/mesa/state_tracker/st_atom_msaa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesalib/src/mesa/state_tracker/st_atom_msaa.c b/mesalib/src/mesa/state_tracker/st_atom_msaa.c index ea9eb9a6d..9baa4fcf2 100644 --- a/mesalib/src/mesa/state_tracker/st_atom_msaa.c +++ b/mesalib/src/mesa/state_tracker/st_atom_msaa.c @@ -51,7 +51,8 @@ static void update_sample_mask( struct st_context *st ) /* unlike in gallium/d3d10 the mask is only active if msaa is enabled */ if (st->ctx->Multisample.SampleCoverage) { unsigned nr_bits; - nr_bits = st->ctx->Multisample.SampleCoverageValue * (float)sample_count; + nr_bits = (unsigned) + (st->ctx->Multisample.SampleCoverageValue * (float)sample_count); /* there's lot of ways how to do this. We just use first few bits, since we have no knowledge of sample positions here. When app-supplied mask though is used too might need to be smarter. |