windowscodecs: Mark some fall-throughs in switch statements.
This commit is contained in:
parent
fe6140e0fd
commit
2e27be37c3
|
@ -364,6 +364,7 @@ static HRESULT WINAPI PngDecoder_Initialize(IWICBitmapDecoder *iface, IStream *p
|
|||
case PNG_COLOR_TYPE_GRAY_ALPHA:
|
||||
/* WIC does not support grayscale alpha formats so use RGBA */
|
||||
ppng_set_gray_to_rgb(This->png_ptr);
|
||||
/* fall through */
|
||||
case PNG_COLOR_TYPE_RGB_ALPHA:
|
||||
This->bpp = bit_depth * 4;
|
||||
switch (bit_depth)
|
||||
|
|
|
@ -295,6 +295,7 @@ static HRESULT tiff_get_decode_info(TIFF *tiff, tiff_decode_info *decode_info)
|
|||
{
|
||||
case 0: /* WhiteIsZero */
|
||||
decode_info->invert_grayscale = 1;
|
||||
/* fall through */
|
||||
case 1: /* BlackIsZero */
|
||||
if (samples != 1)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue