From b216c09ade7b56efb97fe82754b72b1620f67098 Mon Sep 17 00:00:00 2001 From: Niklas Haas Date: Mon, 16 Jan 2023 20:48:19 +0100 Subject: opengl: move `ra_gl_ctx_params.flipped` to `struct GL` This is motivated by a need to access it from vo_gpu_next's opengl wrapping code, and justified by it being an inherent property of the GL context itself, --- video/out/opengl/context_angle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video/out/opengl/context_angle.c') diff --git a/video/out/opengl/context_angle.c b/video/out/opengl/context_angle.c index 77a33f6bb1..f5cc2c5ed6 100644 --- a/video/out/opengl/context_angle.c +++ b/video/out/opengl/context_angle.c @@ -605,10 +605,10 @@ static bool angle_init(struct ra_ctx *ctx) }; struct ra_gl_ctx_params params = { .swap_buffers = angle_swap_buffers, - .flipped = p->flipped, .external_swapchain = p->dxgi_swapchain ? &dxgi_swapchain_fns : NULL, }; + gl->flipped = p->flipped; if (!ra_gl_ctx_init(ctx, gl, params)) goto fail; -- cgit v1.2.3