mirror of https://github.com/libsdl-org/SDL
Fix unused variable warning on METAL (see bug #5430)
This commit is contained in:
parent
c1eb9ecf99
commit
b032504162
|
@ -842,8 +842,6 @@ METAL_UpdateTextureNV(SDL_Renderer * renderer, SDL_Texture * texture,
|
|||
const Uint8 *UVplane, int UVpitch)
|
||||
{ @autoreleasepool {
|
||||
METAL_TextureData *texturedata = (__bridge METAL_TextureData *)texture->driverdata;
|
||||
const int Uslice = 0;
|
||||
const int Vslice = 1;
|
||||
SDL_Rect UVrect = {rect->x / 2, rect->y / 2, (rect->w + 1) / 2, (rect->h + 1) / 2};
|
||||
|
||||
/* Bail out if we're supposed to update an empty rectangle */
|
||||
|
|
Loading…
Reference in New Issue