From 99ffd21ef873cc30ac37c901ddd374fb26d41939 Mon Sep 17 00:00:00 2001 From: pommicket Date: Wed, 19 Feb 2025 18:31:01 -0500 Subject: clean up textures --- camera.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'camera.c') diff --git a/camera.c b/camera.c index 095bb85..d1448d0 100644 --- a/camera.c +++ b/camera.c @@ -353,8 +353,9 @@ bool camera_next_frame(Camera *camera) { return false; } } -void camera_update_gl_texture_2d(Camera *camera) { +void camera_update_gl_textures(Camera *camera, const GLuint textures[3]) { int prev_align = 1; + gl.BindTexture(GL_TEXTURE_2D, textures[0]); gl.GetIntegerv(GL_UNPACK_ALIGNMENT, &prev_align); uint32_t frame_width = camera_frame_width(camera), frame_height = camera_frame_height(camera); for (int align = 8; align >= 1; align >>= 1) { -- cgit v1.2.3