mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-08 04:08:32 +09:00
11 lines
191 B
C++
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;
|
|
}
|
|
} |