diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-11-22 02:45:39 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-11-22 02:45:39 +0000 |
commit | de98d968f076ad1b6368938e502cecde8b96609e (patch) | |
tree | 4dc092dcee2791ff8ca906d008bdcc830565a4c3 /lib | |
parent | d17c99ccb93955b50e24bd633cc5b263401e42b9 (diff) |
import Mesa 11.0.6
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c b/lib/mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c index 4b29c2eb2..a0527a596 100644 --- a/lib/mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c +++ b/lib/mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c @@ -16,8 +16,8 @@ static void stipple_quad(struct quad_stage *qs, struct quad_header *quads[], unsigned nr) { - static const uint bit31 = 1u << 31; - static const uint bit30 = 1u << 30; + static const uint bit31 = 1 << 31; + static const uint bit30 = 1 << 30; unsigned pass = nr; struct softpipe_context *softpipe = qs->softpipe; |