1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-02 16:49:46 +02:00
openrw/rwcore/gl/DrawBuffer.hpp

38 lines
567 B
C++
Raw Normal View History

#ifndef _LIBRW_DRAWBUFFER_HPP_
#define _LIBRW_DRAWBUFFER_HPP_
2018-12-09 23:06:02 +01:00
#include <gl/gl_core_3_3.h>
2014-02-10 06:43:20 +01:00
class GeometryBuffer;
2014-02-13 11:55:11 +01:00
2016-09-09 22:13:21 +02:00
/**
* DrawBuffer stores VAO state
2014-02-13 11:55:11 +01:00
*/
2014-02-10 06:43:20 +01:00
class DrawBuffer {
2016-09-09 22:13:21 +02:00
GLuint vao;
GLenum facetype;
2014-02-10 06:43:20 +01:00
public:
2016-09-09 22:13:21 +02:00
DrawBuffer();
~DrawBuffer();
GLuint getVAOName() const {
return vao;
}
void setFaceType(GLenum ft) {
facetype = ft;
}
GLenum getFaceType() const {
return facetype;
}
/**
* Adds a Geometry Buffer to the Draw Buffer.
*/
void addGeometry(GeometryBuffer* gbuff);
2014-02-10 06:43:20 +01:00
};
2016-09-09 22:13:21 +02:00
#endif