Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
GLSubArrayHandler.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_GLARRAYHANDLERFLAT_HPP_
13#define GAMP_GLARRAYHANDLERFLAT_HPP_
14
16
18 using namespace gamp::render::gl;
19 using namespace gamp::render::gl::data;
20
21 /** \addtogroup Gamp_GLImpl
22 *
23 * @{
24 */
25
26 /**
27 * Handles consistency of interleaved array state.
28 */
30 public:
31 virtual ~GLSubArrayHandler() noexcept = default;
32 /**
33 * Implementation shall associate the data with the array
34 *
35 * @param gl current GL object
36 * @param ext extension object allowing passing of an implementation detail
37 */
38 virtual void syncData(const GL &gl, ShaderState* st) = 0;
39
40 /**
41 * Implementation shall enable or disable the array state.
42 *
43 * @param gl current GL object
44 * @param enable true if array shall be enabled, otherwise false.
45 * @param ext extension object allowing passing of an implementation detail
46 */
47 virtual void enableState(const GL &gl, bool enable, ShaderState* st) = 0;
48
49 virtual const GLArrayDataRef& data() = 0;
50 };
51
52 /**@}*/
53} // namespace gamp::render::gl::data::impl
54
55#endif /* GAMP_GLARRAYHANDLERFLAT_HPP_ */
Handles consistency of interleaved array state.
virtual ~GLSubArrayHandler() noexcept=default
virtual const GLArrayDataRef & data()=0
virtual void syncData(const GL &gl, ShaderState *st)=0
Implementation shall associate the data with the array.
virtual void enableState(const GL &gl, bool enable, ShaderState *st)=0
Implementation shall enable or disable the array state.
ShaderState allows to sharing data between shader programs, while updating the attribute and uniform ...
std::shared_ptr< GLArrayData > GLArrayDataRef