12#ifndef GAMP_GLSLARRAYHANDLER_HPP_
13#define GAMP_GLSLARRAYHANDLER_HPP_
22 using namespace gamp::render::gl;
23 using namespace gamp::render::gl::data;
34 template <
typename Value_type>
54 enableSimple(
gl, enable);
79 if( !
m_ad->isVBOWritten() ) {
80 m_ad->glBindBuffer(
gl,
true);
81 if(
m_ad->usesClientMem() ) {
84 m_ad->setVBOWritten(
true);
86 m_ad->glBindBuffer(
gl,
false);
91 ::glGetVertexAttribiv(
m_ad->location(), GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING,
reinterpret_cast<GLint*
>(&tempI));
92 if(
m_ad->vboName() != tempI ) {
93 m_ad->glBindBuffer(
gl,
true);
95 m_ad->glBindBuffer(
gl,
false);
98 }
else if(
m_ad->usesClientMem() ) {
101 st.enableVertexAttribArray(
gl,
m_ad);
103 st.disableVertexAttribArray(
gl,
m_ad);
108 void enableSimple(
const GL&
gl,
bool enable) {
109 GLint location =
m_ad->location();
128 if(
m_ad->isVBO() ) {
130 if( !
m_ad->isVBOWritten() ) {
131 m_ad->glBindBuffer(
gl,
true);
132 if(
m_ad->usesClientMem() ) {
133 ::glBufferData(
m_ad->vboTarget(),
m_ad->byteCount(),
m_ad->data(),
m_ad->vboUsage());
135 m_ad->setVBOWritten(
true);
136 m_ad->glVertexAttribPointer(
gl);
137 m_ad->glBindBuffer(
gl,
false);
142 glGetVertexAttribiv(location, GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING,
reinterpret_cast<GLint*
>(&tempI));
143 if(
m_ad->vboName() != tempI ) {
144 m_ad->glBindBuffer(
gl,
true);
145 m_ad->glVertexAttribPointer(
gl);
146 m_ad->glBindBuffer(
gl,
false);
149 }
else if(
m_ad->usesClientMem() ) {
150 m_ad->glVertexAttribPointer(gl);
152 ::glEnableVertexAttribArray(location);
154 ::glDisableVertexAttribArray(location);
GLArrayHandler() noexcept=default
GLArrayDataClientRef< Value_type > m_ad
GLSLArrayHandler() noexcept=default
void addSubHandler(GLSLSubArrayHandler &&) override
Supporting interleaved arrays, where sub handlers may handle the array state and the master handler t...
void setSubArrayVBOName(GLuint) override
void enableShaderState(GL &gl, bool enable, ShaderState &st)
void enableState(GL &gl, bool enable, ShaderState *st) override
Implementation shall enable or disable the array state.
Used for interleaved GLSL arrays, i.e.
ShaderState allows to sharing data between shader programs, while updating the attribute and uniform ...
bool vertexAttribPointer(const GL &gl, const GLArrayDataRef &data)
Set the GLArrayData vertex attribute data, if it's location is valid, i.e.
GLint getAttribLocation(const GL &, const string_t &name)
Gets the location of a shader attribute with given name.