Commit 2232fef5 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

winex11: Add a few 'fall through' comments.

parent e6f19301
......@@ -146,6 +146,7 @@ int X11DRV_PALETTE_Init(void)
{
case DirectColor:
X11DRV_PALETTE_PaletteFlags |= X11DRV_PALETTE_VIRTUAL;
/* fall through */
case GrayScale:
case PseudoColor:
if (private_color_map)
......@@ -175,6 +176,7 @@ int X11DRV_PALETTE_Init(void)
case TrueColor:
X11DRV_PALETTE_PaletteFlags |= X11DRV_PALETTE_VIRTUAL;
/* fall through */
case StaticColor:
X11DRV_PALETTE_PaletteFlags |= X11DRV_PALETTE_FIXED;
X11DRV_PALETTE_ComputeColorShifts(&X11DRV_PALETTE_default_shifts, default_visual.red_mask, default_visual.green_mask, default_visual.blue_mask);
......
......@@ -1112,6 +1112,7 @@ static void UploadGlyph(struct xrender_physdev *physDev, int glyph)
default:
ERR("aa = %d - not implemented\n", format);
/* fall through */
case AA_None:
wxr_format = WXR_FORMAT_MONO;
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment