blob: b6a20ad15d2e1f256dfb3532d6c5b74c92d1075e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#pragma once
#include <EGL/egl.h>
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
extern bool checkGlError(const char* op);
class FrameBuffer {
public:
FrameBuffer();
virtual ~FrameBuffer();
bool InitializeGLContext();
bool Init(int width, int height, GLenum format);
GLuint GetTextureName() const;
GLuint GetFrameBufferName() const;
GLenum GetFormat() const;
int GetWidth() const;
int GetHeight() const;
private:
void Reset();
bool CreateBuffers();
GLuint mFrameBufferName;
GLuint mTextureName;
int mWidth;
int mHeight;
GLenum mFormat;
};
|