Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
GLSLArrayHandler.hpp
Go to the documentation of this file.
1/*
2 * Author: Sven Gothel <sgothel@jausoft.com>
3 * Copyright Gothel Software e.K.
4 *
5 * SPDX-License-Identifier: MIT
6 *
7 * This Source Code Form is subject to the terms of the MIT License
8 * If a copy of the MIT was not distributed with this file,
9 * you can obtain one at https://opensource.org/license/mit/.
10 */
11
12#ifndef GAMP_GLSLARRAYHANDLER_HPP_
13#define GAMP_GLSLARRAYHANDLER_HPP_
14
15#include <jau/basic_types.hpp>
16
20
22 using namespace gamp::render::gl;
23 using namespace gamp::render::gl::data;
24
25 /** \addtogroup Gamp_GLImpl
26 *
27 * @{
28 */
29
30 /**
31 * Used for 1:1 GLSL arrays, i.e. where the buffer data
32 * represents this array only.
33 */
34 template <typename Value_type>
35 class GLSLArrayHandler : public GLArrayHandler<Value_type> {
36 private:
38
39 public:
40 GLSLArrayHandler() noexcept = default;
41
42 void setSubArrayVBOName(GLuint) override {
43 throw jau::UnsupportedOperationException("@GLSLArrayHandler", E_FILE_LINE);
44 }
45
47 throw jau::UnsupportedOperationException("@GLSLArrayHandler", E_FILE_LINE);
48 }
49
50 void enableState(GL& gl, bool enable, ShaderState* st) override {
51 if( st ) {
52 enableShaderState(gl, enable, *st);
53 } else {
54 enableSimple(gl, enable);
55 }
56 }
57
58 void enableShaderState(GL& gl, bool enable, ShaderState& st) {
59 if( !m_ad ) {
60 throw jau::IllegalStateError("GLArrayDataClient not set", E_FILE_LINE);
61 }
62 if( enable ) {
63 /*
64 * This would be the non optimized code path:
65 *
66 if(ad.isVBO()) {
67 m_ad->glBindBuffer(gl, true);
68 if(!ad.isVBOWritten()) {
69 if(null!=buffer) {
70 m_ad->glBufferData(gl);
71 }
72 ad.setVBOWritten(true);
73 }
74 }
75 st.vertexAttribPointer(glsl, ad);
76 */
77 if( m_ad->isVBO() ) {
78 // bind and refresh the VBO / vertex-attr only if necessary
79 if( !m_ad->isVBOWritten() ) {
80 m_ad->glBindBuffer(gl, true);
81 if( m_ad->usesClientMem() ) {
82 m_ad->glBufferData(gl);
83 }
84 m_ad->setVBOWritten(true);
86 m_ad->glBindBuffer(gl, false);
87 } else if( st.getAttribLocation(gl, m_ad) >= 0 ) {
88 // didn't experience a performance hit on this query ..
89 // (using ShaderState's location query above to validate the location)
90 GLuint tempI;
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);
96 }
97 }
98 } else if( m_ad->usesClientMem() ) {
100 }
101 st.enableVertexAttribArray(gl, m_ad);
102 } else {
103 st.disableVertexAttribArray(gl, m_ad);
104 }
105 }
106
107 private:
108 void enableSimple(const GL& gl, bool enable) {
109 GLint location = m_ad->location();
110 if( 0 > location ) {
111 return;
112 }
113 if( enable ) {
114 /*
115 * This would be the non optimized code path:
116 *
117 if(m_ad->isVBO()) {
118 m_ad->glBindBuffer(gl, true);
119 if(!m_ad->isVBOWritten()) {
120 if(buffer) {
121 ::glBufferData(m_ad->vboTarget(), m_ad->byteCount(), buffer->memAtPosition(), m_ad->vboUsage());
122 }
123 m_ad->setVBOWritten(true);
124 }
125 }
126 st.vertexAttribPointer(glsl, ad);
127 */
128 if( m_ad->isVBO() ) {
129 // bind and refresh the VBO / vertex-attr only if necessary
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());
134 }
135 m_ad->setVBOWritten(true);
136 m_ad->glVertexAttribPointer(gl);
137 m_ad->glBindBuffer(gl, false);
138 } else {
139 // didn't experience a performance hit on this query ..
140 // (using ShaderState's location query above to validate the location)
141 GLuint tempI;
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);
147 }
148 }
149 } else if( m_ad->usesClientMem() ) {
150 m_ad->glVertexAttribPointer(gl);
151 }
152 ::glEnableVertexAttribArray(location);
153 } else {
154 ::glDisableVertexAttribArray(location);
155 }
156 }
157 };
158
159 /**@}*/
160} // namespace gamp::render::gl::data::impl
161
162#endif // GAMP_GLSLARRAYHANDLER_HPP_
#define E_FILE_LINE
GLArrayDataClientRef< Value_type > m_ad
void addSubHandler(GLSLSubArrayHandler &&) override
Supporting interleaved arrays, where sub handlers may handle the array state and the master handler t...
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.
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.
uint8_t Value_type