We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b6d533 commit d0faf67Copy full SHA for d0faf67
1 file changed
framebuffer.h
@@ -27,6 +27,8 @@ struct Framebuffer {
27
28
void destroy() {
29
glDeleteFramebuffers(1, &fbo);
30
+ // This line was missing in the original implementation in the framebuffer video
31
+ glDeleteTextures(2, textures);
32
}
33
34
void bind() {
0 commit comments