12#ifndef GAMP_GLSLARRAYHANDLERFLAT_HPP_
13#define GAMP_GLSLARRAYHANDLERFLAT_HPP_
20 using namespace gamp::render::gl;
21 using namespace gamp::render::gl::data;
44 if( 0 <= m_ad->location() ) {
45 m_ad->glVertexAttribPointer(
gl);
68 st->enableVertexAttribArray(
gl, m_ad);
70 st->disableVertexAttribArray(
gl, m_ad);
73 GLint location = m_ad->location();
76 ::glEnableVertexAttribArray(location);
78 ::glDisableVertexAttribArray(location);
const GLArrayDataRef & data() override
void syncData(const GL &gl, ShaderState *st) override
Implementation shall associate the data with the array.
void enableState(const GL &gl, bool enable, ShaderState *st) override
Implementation shall enable or disable the array state.
GLSLSubArrayHandler(GLArrayDataRef &ad)
Handles consistency of interleaved array state.
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.
std::shared_ptr< GLArrayData > GLArrayDataRef