aboutsummaryrefslogtreecommitdiff
path: root/sokol_glue.h
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2024-02-04 14:07:11 +0100
committerAndre Weissflog <floooh@gmail.com>2024-02-04 14:07:11 +0100
commit146d709816a240f809a3975cf29e8ed59bbf9f9e (patch)
tree91a77bfc7edca659987388eec052a4d331283104 /sokol_glue.h
parente55a89164a6137ee3a03e704bbc9defa94328768 (diff)
sokol_gfx.h gl: pass cleanup wip
Diffstat (limited to 'sokol_glue.h')
-rw-r--r--sokol_glue.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sokol_glue.h b/sokol_glue.h
index f1bf3aa3..fa8989ce 100644
--- a/sokol_glue.h
+++ b/sokol_glue.h
@@ -141,8 +141,7 @@ SOKOL_API_IMPL sg_swapchain sapp_sgswapchain(void) {
swapchain.wgpu.render_view = sapp_wgpu_get_render_view();
swapchain.wgpu.resolve_view = sapp_wgpu_get_resolve_view();
swapchain.wgpu.depth_stencil_view = sapp_wgpu_get_depth_stencil_view();
- // FIXME!
- // swapchain.gl.framebuffer = sapp_gl_get_framebuffer();
+ swapchain.gl.framebuffer = sapp_gl_get_framebuffer();
return swapchain;
}
#endif