blob: e675aabec50589c13395d4577f0b56fb8ff66ecb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "FrameBuffer.h"
// 有些版本的OpenGL不支持绑定多个RT
bool FrameBuffer::BindRenderTexture(RenderTexture* rt, int location /* = 0 */)
{
}
bool FrameBuffer::Blit(FrameBuffer* target)
{
}
|