Home | History | Annotate | Download | only in opengl

Lines Matching refs:glw

58 	glw::glGenBuffersFunc		glw::Functions::*genFunc;
59 glw::glDeleteBuffersFunc glw::Functions::*deleteFunc;
67 ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits);
68 ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits, deUint32 object);
75 const glw::Functions& m_gl;
90 TypedObjectWrapper (const glw::Functions& gl, deUint32 object) : ObjectWrapper(gl, objectTraits(Type), object) {}
92 explicit TypedObjectWrapper (const glw::Functions& gl) : ObjectWrapper(gl, objectTraits(Type)) {}
101 ObjectVector (const glw::Functions& gl, const ObjectTraits& traits, size_t numObjects = 0);
118 const glw::Functions& m_gl;
127 explicit TypedObjectVector (const glw::Functions& gl, size_t numObjects = 0) : ObjectVector(gl, objectTraits(Type), numObjects) {}