From fa86807ceb2ff3c312931386717514f3af474962 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 2 Jan 2018 14:11:10 -0800 Subject: [PATCH] Fixed metal renderer pixel centers when drawing --- src/render/metal/SDL_render_metal.m | 54 +++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 14 deletions(-) diff --git a/src/render/metal/SDL_render_metal.m b/src/render/metal/SDL_render_metal.m index e2f9e43fc6a62..cc0e4a2032dcb 100644 --- a/src/render/metal/SDL_render_metal.m +++ b/src/render/metal/SDL_render_metal.m @@ -816,6 +816,18 @@ - (void)dealloc return 0; }} +// adjust pixel center for x and y coordinates +static inline float +adjustx(const float val) +{ + return (val + 0.5f); +} +static inline float +adjusty(const float val) +{ + return (val - 0.5f); +} + // normalize a value from 0.0f to len into 0.0f to 1.0f. static inline float normtex(const float _val, const float len) @@ -830,7 +842,12 @@ - (void)dealloc { @autoreleasepool { METAL_ActivateRenderer(renderer); - const size_t vertlen = sizeof(SDL_FPoint) * count; + const size_t vertlen = (sizeof (float) * 2) * count; + float *verts = SDL_malloc(vertlen); + if (!verts) { + return SDL_OutOfMemory(); + } + METAL_RenderData *data = (__bridge METAL_RenderData *) renderer->driverdata; // !!! FIXME: render color should live in a dedicated uniform buffer. @@ -838,8 +855,17 @@ - (void)dealloc [data.mtlcmdencoder setRenderPipelineState:ChoosePipelineState(data, data.mtlpipelineprims, renderer->blendMode)]; [data.mtlcmdencoder setFragmentBytes:color length:sizeof(color) atIndex:0]; - [data.mtlcmdencoder setVertexBytes:points length:vertlen atIndex:0]; + + float *ptr = verts; + for (int i = 0; i < count; i++, points++) { + *ptr = adjustx(points->x); ptr++; + *ptr = adjusty(points->y); ptr++; + } + + [data.mtlcmdencoder setVertexBytes:verts length:vertlen atIndex:0]; [data.mtlcmdencoder drawPrimitives:primtype vertexStart:0 vertexCount:count]; + + SDL_free(verts); return 0; }} @@ -871,10 +897,10 @@ - (void)dealloc if ((rects->w <= 0.0f) || (rects->h <= 0.0f)) continue; const float verts[] = { - rects->x, rects->y + rects->h, - rects->x, rects->y, - rects->x + rects->w, rects->y + rects->h, - rects->x + rects->w, rects->y, + adjustx(rects->x), adjusty(rects->y + rects->h), + adjustx(rects->x), adjusty(rects->y), + adjustx(rects->x + rects->w), adjusty(rects->y + rects->h), + adjustx(rects->x + rects->w), adjusty(rects->y) }; [data.mtlcmdencoder setVertexBytes:verts length:sizeof(verts) atIndex:0]; @@ -895,10 +921,10 @@ - (void)dealloc const float texh = (float) texturedata.mtltexture.height; const float xy[] = { - dstrect->x, dstrect->y + dstrect->h, - dstrect->x, dstrect->y, - dstrect->x + dstrect->w, dstrect->y + dstrect->h, - dstrect->x + dstrect->w, dstrect->y + adjustx(dstrect->x), adjusty(dstrect->y + dstrect->h), + adjustx(dstrect->x), adjusty(dstrect->y), + adjustx(dstrect->x + dstrect->w), adjusty(dstrect->y + dstrect->h), + adjustx(dstrect->x + dstrect->w), adjusty(dstrect->y) }; const float uv[] = { @@ -965,10 +991,10 @@ - (void)dealloc }; const float xy[] = { - -center->x, dstrect->h - center->y, - -center->x, -center->y, - dstrect->w - center->x, dstrect->h - center->y, - dstrect->w - center->x, -center->y, + adjustx(-center->x), adjusty(dstrect->h - center->y), + adjustx(-center->x), adjusty(-center->y), + adjustx(dstrect->w - center->x), adjusty(dstrect->h - center->y), + adjustx(dstrect->w - center->x), adjusty(-center->y) }; {