Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
GLSLArrayHandlerInterleaved.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_GLSLARRAYHANDLERINTERLEAVED_HPP_
13#define GAMP_GLSLARRAYHANDLERINTERLEAVED_HPP_
14
15#include <jau/basic_types.hpp>
18
20 using namespace gamp::render::gl;
21 using namespace gamp::render::gl::data;
22
23 /** \addtogroup Gamp_GLImpl
24 *
25 * @{
26 */
27
28 /**
29 * Interleaved fixed function arrays, i.e. where this buffer data
30 * represents many arrays.
31 */
32 template<typename Value_type>
33 class GLSLArrayHandlerInterleaved : public GLArrayHandler<Value_type> {
34 private:
35 std::vector<GLSLSubArrayHandler> subArrays;
37
38 void syncSubData(const GL& gl, ShaderState* st) {
39 for(auto & subArray : subArrays) {
40 subArray.syncData(gl, st);
41 }
42 }
43
44 public:
46
47 GLSLArrayHandlerInterleaved() noexcept = default;
48
49 void setSubArrayVBOName(GLuint vboName) override {
50 for(auto & subArray : subArrays) {
51 subArray.data()->setVBOName(vboName);
52 }
53 }
54
55 void addSubHandler(GLSLSubArrayHandler&& handler) override {
56 subArrays.push_back(std::move(handler));
57 }
58
59 void enableState(GL& gl, bool enable, ShaderState* st) override {
60 if(enable) {
61 if(!m_ad->isVBO()) {
62 throw jau::InternalError("Interleaved handle is not VBO: "+m_ad->toString(), E_FILE_LINE);
63 }
65 // sub data will decide whether to update the vertex attrib pointer
66 syncSubData(gl, st);
68 }
69 for(auto & subArray : subArrays) {
70 subArray.enableState(gl, enable, st);
71 }
72 }
73 };
74
75 /**@}*/
76}
77
78#endif /* GAMP_GLSLARRAYHANDLERINTERLEAVED_HPP_ */
#define E_FILE_LINE
bool bindBuffer(GL &gl, bool bind)
if bind is true and the data uses VBO, the latter will be bound and data written to the GPU if requir...
GLArrayDataClientRef< Value_type > m_ad
void addSubHandler(GLSLSubArrayHandler &&handler) override
Supporting interleaved arrays, where sub handlers may handle the array state and the master handler t...
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 ...
uint8_t Value_type