Skip to content

Commit

Permalink
vulkan/context: remove pointee
Browse files Browse the repository at this point in the history
  • Loading branch information
themisterholliday committed Mar 1, 2024
1 parent b23f1c8 commit e6a9001
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions video/out/vulkan/context_moltenvk.m
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ static bool moltenvk_reconfig(struct ra_ctx *ctx)
{
struct priv *p = ctx->priv;
CGSize s = p->layer.drawableSize;
ctx->vo->pointee.dwidth = s.width;
ctx->vo->pointee.dheight = s.height;
ctx->vo->dwidth = s.width;
ctx->vo->dheight = s.height;
ra_vk_ctx_resize(ctx, s.width, s.height);
MP_MSG(ctx, MSGL_V, "Width: %f, Height: %f ### Called resize\n", s.width, s.height);
return true;
Expand Down

0 comments on commit e6a9001

Please sign in to comment.