Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
TextureRaster.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_GLSLSHADERSTATE_HPP_
13#define GAMP_GLSLSHADERSTATE_HPP_
14
15#include <gamp/Gamp.hpp>
20
21namespace gamp::render::gl::glsl {
22 using namespace gamp::render::gl;
23 using namespace gamp::render::gl::data;
24
25 /** \addtogroup Gamp_GLSL
26 *
27 * @{
28 */
29
30 class GLSLTextureRaster {
31 private:
32 bool textureVertFlipped;
33 int textureUnit;
34
36 PMVMatrix4f m_pmvMatrix;
37 GLUniformData m_pmvMatrixUniform;
38 GLUniformData m_activeTexUniform;
39 GLArrayDataServer m_interleavedVBO;
40
41 GLSLTextureRaster(int textureUnit, bool textureVertFlipped) {
42 this.textureVertFlipped = textureVertFlipped;
43 this.textureUnit = textureUnit;
44 }
45
46 public int getTextureUnit() { return textureUnit; }
47
48 static final String shaderBasename = "texture01_xxx";
49 static final String shaderSrcPath = "../../shader";
50 static final String shaderBinPath = "../../shader/bin";
51
52 public void init(final GL2ES2 gl) {
53 // Create & Compile the shader objects
54 final ShaderCode rsVp = ShaderCode.create(gl, GL2ES2.GL_VERTEX_SHADER, this.getClass(),
56 final ShaderCode rsFp = ShaderCode.create(gl, GL2ES2.GL_FRAGMENT_SHADER, this.getClass(),
58 rsVp.defaultShaderCustomization(gl, true, true);
59 rsFp.defaultShaderCustomization(gl, true, true);
60
61 // Create & Link the shader program
62 sp = new ShaderProgram();
63 sp.add(rsVp);
64 sp.add(rsFp);
65 if(!sp.link(gl, System.err)) {
66 throw GLException("Couldn't link program: "+sp);
67 }
68 sp.useProgram(gl, true);
69
70 // setup mgl_PMVMatrix
71 pmvMatrix = new PMVMatrix4f();
72 pmvMatrix.loadPIdentity();
73 pmvMatrix.loadMvIdentity();
74 pmvMatrixUniform = new GLUniformData("mgl_PMVMatrix", 4, 4, pmvMatrix.getSyncPMv()); // P, Mv
75 if( pmvMatrixUniform.setLocation(gl, sp.program()) < 0 ) {
76 throw GLException("Couldn't locate "+pmvMatrixUniform+" in shader: "+sp);
77 }
78 gl.glUniform(pmvMatrixUniform);
79
80 activeTexUniform = new GLUniformData("mgl_Texture0", textureUnit);
81 if( activeTexUniform.setLocation(gl, sp.program()) < 0 ) {
82 throw GLException("Couldn't locate "+activeTexUniform+" in shader: "+sp);
83 }
84 gl.glUniform(activeTexUniform);
85
86 final float[] s_quadTexCoords;
87 if( textureVertFlipped ) {
88 s_quadTexCoords = s_quadTexCoords01;
89 } else {
90 s_quadTexCoords = s_quadTexCoords00;
91 }
92
93 interleavedVBO = GLArrayDataServer.createGLSLInterleaved(3+2, GL.GL_FLOAT, false, 2*4, GL.GL_STATIC_DRAW);
94 {
95 final GLArrayData vArrayData = interleavedVBO.addGLSLSubArray("mgl_Vertex", 3, GL.GL_ARRAY_BUFFER);
96 if( vArrayData.setLocation(gl, sp.program()) < 0 ) {
97 throw GLException("Couldn't locate "+vArrayData+" in shader: "+sp);
98 }
99 final GLArrayData tArrayData = interleavedVBO.addGLSLSubArray("mgl_MultiTexCoord", 2, GL.GL_ARRAY_BUFFER);
100 if( tArrayData.setLocation(gl, sp.program()) < 0 ) {
101 throw GLException("Couldn't locate "+tArrayData+" in shader: "+sp);
102 }
103 final FloatBuffer ib = (FloatBuffer)interleavedVBO.getBuffer();
104 for(int i=0; i<4; i++) {
105 ib.put(s_quadVertices, i*3, 3);
106 ib.put(s_quadTexCoords, i*2, 2);
107 }
108 }
109 interleavedVBO.seal(gl, true);
110 interleavedVBO.enableBuffer(gl, false);
111
112 sp.useProgram(gl, false);
113 }
114
115 public void reshape(final GL2ES2 gl, final int x, final int y, final int width, final int height) {
116 if(null != sp) {
117 pmvMatrix.loadPIdentity();
118 pmvMatrix.orthoP(-1.0f, 1.0f, -1.0f, 1.0f, 0.0f, 10.0f);
119
120 pmvMatrix.loadMvIdentity();
121
122 sp.useProgram(gl, true);
123 gl.glUniform(pmvMatrixUniform);
124 sp.useProgram(gl, false);
125 }
126 }
127
128 public void dispose(final GL2ES2 gl) {
129 if(null != pmvMatrixUniform) {
130 pmvMatrixUniform = null;
131 }
132 pmvMatrix=null;
133 if(null != interleavedVBO) {
134 interleavedVBO.destroy(gl);
135 interleavedVBO=null;
136 }
137 if(null != sp) {
138 sp.destroy(gl);
139 sp=null;
140 }
141 }
142
143 public void display(final GL2ES2 gl) {
144 if(null != sp) {
145 sp.useProgram(gl, true);
146 interleavedVBO.enableBuffer(gl, true);
147
148 gl.glDrawArrays(GL.GL_TRIANGLE_STRIP, 0, 4);
149
150 interleavedVBO.enableBuffer(gl, false);
151 sp.useProgram(gl, false);
152 }
153 }
154
155 private static final float[] s_quadVertices = {
156 -1f, -1f, 0f, // LB
157 1f, -1f, 0f, // RB
158 -1f, 1f, 0f, // LT
159 1f, 1f, 0f // RT
160 };
161 private static final float[] s_quadTexCoords00 = {
162 0f, 0f, // LB
163 1f, 0f, // RB
164 0f, 1f, // LT
165 1f, 1f // RT
166 };
167 private static final float[] s_quadTexCoords01 = {
168 0f, 1f, // LB
169 1f, 1f, // RB
170 0f, 0f, // LT
171 1f, 0f // RT
172 };
173 };
174
175
176 /**@}*/
177}
178
179#endif // GAMP_GLSLSHADERSTATE_HPP_
180
Server data buffer for VBO GLArrayData usage of given template-type Value_type.
static server_ref createGLSLInterleaved(GLsizei compsPerElement, bool normalized, GLsizei initialElementCount, GLenum vboUsage)
Create a VBO for GLSL interleaved array data starting with a new created Buffer object with initialEl...
Interface for a generic data buffer to be used for OpenGL arrays.
void setLocation(GLint loc) noexcept
Sets the given location of the shader attribute.
GLSL uniform data wrapper encapsulating data to be uploaded to the GPU as a uniform.
void reshape(final GL2ES2 gl, final int x, final int y, final int width, final int height)
Convenient shader code class to use and instantiate vertex or fragment programs.
size_t defaultShaderCustomization(const GL &gl, bool preludeVersion, bool addDefaultPrecision)
Default customization of this shader source code.
static ShaderCodeRef create(GLenum type, size_t count, const source_list_t &sources) noexcept