Fixed bug #6199 - Broken clip behaviour on a render target (metal)

This commit is contained in:
Sylvain 2022-09-08 05:44:39 +02:00
parent 0ad8d9d292
commit 90a480a100
No known key found for this signature in database
GPG key ID: 5F87E02E5BC0939E

View file

@ -1227,7 +1227,13 @@ SetDrawState(SDL_Renderer *renderer, const SDL_RenderCommand *cmd, const SDL_Met
/* Set Scissor Rect Validation: w/h must be <= render pass */
SDL_zero(output);
METAL_GetOutputSize(renderer, &output.w, &output.h);
if (renderer->target) {
output.w = renderer->target->w;
output.h = renderer->target->h;
} else {
METAL_GetOutputSize(renderer, &output.w, &output.h);
}
if (SDL_IntersectRect(&output, &clip, &clip)) {
MTLScissorRect mtlrect;