fix Xcode concurrency code
This commit is contained in:
12
src/rtt.h
12
src/rtt.h
@@ -29,10 +29,10 @@ public:
|
||||
void unbindFramebuffer();
|
||||
void bindTexture();
|
||||
void unbindTexture();
|
||||
GLuint getTextureID() { return texID; }
|
||||
int getWidth() { return w; }
|
||||
int getHeight() { return h; }
|
||||
int bytes() { return w * h * 4; }
|
||||
int stride() { return w * 4; }
|
||||
GLuint getFBO() { return fboID; }
|
||||
GLuint getTextureID() const { return texID; }
|
||||
int getWidth() const { return w; }
|
||||
int getHeight() const { return h; }
|
||||
int bytes() const { return w * h * 4; }
|
||||
int stride() const { return w * 4; }
|
||||
GLuint getFBO() const { return fboID; }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user