diff options
author | pommicket <pommicket@gmail.com> | 2025-02-19 18:31:01 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-02-19 18:31:01 -0500 |
commit | 99ffd21ef873cc30ac37c901ddd374fb26d41939 (patch) | |
tree | a4de7df834545e7b852bcafb13feba772233a638 /camera.c | |
parent | a0730cadc4359e44303f13bc45056c9133ec8bd2 (diff) |
clean up textures
Diffstat (limited to 'camera.c')
-rw-r--r-- | camera.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) { |