Home | History | Annotate | Download | only in libGLESv2

Lines Matching defs:buffer

15 // Buffer.h: Defines the Buffer class, representing storage of vertex and/or
16 // index data. Implements GL buffer objects and related functionality.
32 class Buffer : public gl::NamedObject
35 explicit Buffer(GLuint name);
37 virtual ~Buffer();
71 void set(Buffer *newBuffer, int newOffset = 0, int newSize = 0)
73 buffer = newBuffer;
80 const gl::BindingPointer<Buffer>& get() const { return buffer; }
83 gl::BindingPointer<Buffer> buffer;