From ad7f696a719a4e0e76ebd174fb111386aa64e84a Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Thu, 14 Dec 2023 19:08:37 -0600 Subject: [PATCH] [glutils] Fix GLFrameBuffer to use right delete function --- deps/glutils/include/glutils/glutils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/glutils/include/glutils/glutils.hpp b/deps/glutils/include/glutils/glutils.hpp index 4647157b..f431aa82 100644 --- a/deps/glutils/include/glutils/glutils.hpp +++ b/deps/glutils/include/glutils/glutils.hpp @@ -111,7 +111,7 @@ extern template struct GLObject; extern template struct GLObject; using GLBuffer = GLObject; -using GLFrameBuffer = GLObject; +using GLFrameBuffer = GLObject; using GLRenderBuffer = GLObject; using GLShader = GLObject; using GLProgram = GLObject;