From 05f5c0c2b55a3f5e5c5fe58c24af87eb76cf6a26 Mon Sep 17 00:00:00 2001 From: Swung0x48 Date: Sun, 4 Jan 2026 23:21:59 +0800 Subject: [PATCH] [Feat] (MG_Impl/GLImpl): export `glDrawBuffer` --- MobileGL/MG_Impl/GLImpl/Exporting/Definitions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MobileGL/MG_Impl/GLImpl/Exporting/Definitions.cpp b/MobileGL/MG_Impl/GLImpl/Exporting/Definitions.cpp index 4adc89d8..728282be 100644 --- a/MobileGL/MG_Impl/GLImpl/Exporting/Definitions.cpp +++ b/MobileGL/MG_Impl/GLImpl/Exporting/Definitions.cpp @@ -433,7 +433,7 @@ DECLARE_GL_FUNCTION_STUB_HEAD(void, EdgeFlag, GLboolean flag) DECLARE_GL_FUNCTIO DECLARE_GL_FUNCTION_STUB_HEAD(void, EdgeFlagv, const GLboolean* flag) DECLARE_GL_FUNCTION_STUB_END_NO_RETURN(void, EdgeFlagv, flag) DECLARE_GL_FUNCTION_STUB_HEAD(void, ClipPlane, GLenum plane, const GLdouble* equation) DECLARE_GL_FUNCTION_STUB_END_NO_RETURN(void, ClipPlane, plane, equation) DECLARE_GL_FUNCTION_STUB_HEAD(void, GetClipPlane, GLenum plane, GLdouble* equation) DECLARE_GL_FUNCTION_STUB_END_NO_RETURN(void, GetClipPlane, plane, equation) -DECLARE_GL_FUNCTION_STUB_HEAD(void, DrawBuffer, GLenum mode) DECLARE_GL_FUNCTION_STUB_END_NO_RETURN(void, DrawBuffer, mode) +DECLARE_GL_FUNCTION_HEAD(void, DrawBuffer, GLenum mode) DECLARE_GL_FUNCTION_END_NO_RETURN(void, DrawBuffer, mode) DECLARE_GL_FUNCTION_STUB_HEAD(void, EnableClientState, GLenum cap) DECLARE_GL_FUNCTION_STUB_END_NO_RETURN(void, EnableClientState, cap) DECLARE_GL_FUNCTION_STUB_HEAD(void, DisableClientState, GLenum cap) DECLARE_GL_FUNCTION_STUB_END_NO_RETURN(void, DisableClientState, cap) DECLARE_GL_FUNCTION_STUB_HEAD(void, GetDoublev, GLenum pname, GLdouble* params) DECLARE_GL_FUNCTION_STUB_END_NO_RETURN(void, GetDoublev, pname, params)