| 1678 | |
| 1679 | #if SDL_HAVE_YUV |
| 1680 | static int |
| 1681 | SDL_LockTextureYUV(SDL_Texture * texture, const SDL_Rect * rect, |
| 1682 | void **pixels, int *pitch) |
| 1683 | { |
| 1684 | return SDL_SW_LockYUVTexture(texture->yuv, rect, pixels, pitch); |
| 1685 | } |
| 1686 | #endif /* SDL_HAVE_YUV */ |
| 1687 | |
| 1688 | static int |
no test coverage detected