Files
MobileGL/MG/MG_GL/GL/Framebuffer/GL_Framebuffer.cpp
T
2025-03-15 19:30:03 +08:00

11 lines
191 B
C++

//
// Created by BZLZHH on 2025/3/15.
//
#include "GL_Framebuffer.h"
namespace MG_GL::GL {
GLenum CheckFramebufferStatus(GLenum target) {
return GL_FRAMEBUFFER_COMPLETE;
}
}