# SDL_GetYUVConversionModeForResolution

Get the YUV conversion mode, returning the correct mode for the resolution when the current conversion mode is [SDL_YUV_CONVERSION_AUTOMATIC](SDL_YUV_CONVERSION_AUTOMATIC)

## Header File

Defined in [SDL_surface.h](https://github.com/libsdl-org/SDL/blob/SDL2/include/SDL_surface.h)

## Syntax

```c
SDL_YUV_CONVERSION_MODE SDL_GetYUVConversionModeForResolution(int width, int height);
```

## Function Parameters

|     |            |                        |
| --- | ---------- | ---------------------- |
| int | **width**  | the resolution width.  |
| int | **height** | the resolution height. |

## Return Value

([SDL_YUV_CONVERSION_MODE](SDL_YUV_CONVERSION_MODE)) Returns YUV conversion
mode.

## Version

This function is available since SDL 2.0.8.

----
[CategoryAPI](CategoryAPI), [CategoryAPIFunction](CategoryAPIFunction), [CategorySurface](CategorySurface)


