12#ifndef GAMP_RENDER_GL_PRIM_PRIMCONTEXT_HPP_
13#define GAMP_RENDER_GL_PRIM_PRIMCONTEXT_HPP_
52 "demos/glsl/bin",
"gears");
54 "demos/glsl/bin",
"gears");
63 if( !sp0->
add(
gl, vp0,
true) || !sp0->
add(
gl, fp0,
true) ) {
69 m_st.attachShaderProgram(
gl, sp0,
true);
76 m_st.ownUniform(
gl, m_pmvMatrixUniform);
77 m_st.pushUniform(
gl, m_pmvMatrixUniform);
80 m_st.ownUniform(
gl, lightU);
81 m_st.pushUniform(
gl, lightU);
84 m_st.ownUniform(
gl, m_colorUniform);
85 m_st.pushUniform(
gl, m_colorUniform);
87 if( m_clearBuffers ) {
88 ::glClearColor(m_clearColor.x, m_clearColor.y, m_clearColor.z, m_clearColor.w);
90 m_initialized = sp0->
inUse();
91 m_st.useProgram(
gl,
false);
101 return m_initialized;
109 m_st.useProgram(
gl,
false);
114 m_initialized =
false;
119 if( !m_initialized ) {
return; }
120 m_viewport = viewport;
125 const bool msaa =
false;
126 jau::fprintf_td(when.
to_ms(), stdout,
"GearsES2.reshape %s of %fx%f, swapInterval %d, msaa %d, tileRendererInUse %d\n",
127 viewport.
toString().c_str(), imageWidth, imageHeight, m_swapInterval, msaa,
false);
130 float left, right, bottom, top;
131 if( imageHeight > imageWidth ) {
132 const float a = (float)imageHeight / (
float)imageWidth;
138 const float a = (float)imageWidth / (
float)imageHeight;
144 const float w = right - left;
145 const float h = top - bottom;
148 const float l = left + float(viewport.
x()) * w / imageWidth;
149 const float r = l + float(viewport.
width()) * w / imageWidth;
150 const float b = bottom + float(viewport.
y()) * h / imageHeight;
151 const float t = b + float(viewport.
height()) * h / imageHeight;
153 const float _w = r - l;
154 const float _h = t - b;
155 jau::fprintf_td(when.
to_ms(), stdout,
">> GearsES2 angle %f, [l %f, r %f, b %f, t %f] %fx%f -> [l %f, r %f, b %f, t %f] %fx%f, v-flip %d",
156 m_teethAngle, left, right, bottom, top, w, h, l, r, b, t, _w, _h, m_flipVerticalInGLOrientation);
159 m_pmvMatrix.loadPIdentity();
160 if( m_flipVerticalInGLOrientation && win->
isBLOriented() ) {
161 m_pmvMatrix.scaleP(1.0f, -1.0f, 1.0f);
163 m_pmvMatrix.frustumP(l, r, b, t, m_zNear, m_zFar);
165 m_pmvMatrix.loadMvIdentity();
166 m_pmvMatrix.translateMv(0.0f, 0.0f, -m_zViewDist);
168 m_st.useProgram(
gl,
true);
169 m_st.pushUniform(
gl, m_pmvMatrixUniform);
170 m_st.useProgram(
gl,
false);
static constexpr jau::math::Vec4f red
void reshape(const WindowRef &win, const jau::math::Recti &viewport, const jau::fraction_timespec &when) override
void dispose(const WindowRef &win, const jau::fraction_timespec &when) override
bool init(const WindowRef &win, const jau::fraction_timespec &when) override
void reshapeImpl(const WindowRef &win, const jau::math::Recti &viewport, float imageWidth, float imageHeight, const jau::fraction_timespec &when)
static GLContext & downcast(RenderContext *rc)
Downcast dereferenced given RenderContext* to GLContext&, throws exception if signature doesn't match...
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
void destroy(GL &gl) noexcept
Detaches all shader codes and deletes the program.
static ShaderProgramRef create() noexcept
bool add(const ShaderCodeRef &shaderCode) noexcept
Adds a new shader to this program.
constexpr bool inUse() const noexcept
ShaderState allows to sharing data between shader programs, while updating the attribute and uniform ...
const gamp::render::RenderContext * renderContext() const noexcept
constexpr bool isBLOriented() const noexcept
Returns true if this surface is rendered in OpenGL's coordinate system, origin at bottom left.
size_t removeKeyListener(const KeyListenerRef &l)
size_t removePointerListener(const PointerListenerRef &l)
void addPointerListener(const PointerListenerRef &l)
void dispose(const jau::fraction_timespec &when) noexcept override
std::string toString() const noexcept
void addKeyListener(const KeyListenerRef &l)
constexpr value_type y() const noexcept
std::string toString() const noexcept
constexpr value_type height() const noexcept
constexpr value_type x() const noexcept
constexpr value_type width() const noexcept
std::shared_ptr< GLUniformSyncMatrices4f > GLUniformSyncMatrices4fRef
std::shared_ptr< GLUniformVec4f > GLUniformVec4fRef
std::shared_ptr< GLUniformVec3f > GLUniformVec3fRef
std::shared_ptr< ShaderProgram > ShaderProgramRef
std::shared_ptr< ShaderCode > ShaderCodeRef
std::shared_ptr< Window > WindowRef
PMVMatrix4< float > PMVMat4f
int fprintf_td(const uint64_t elapsed_ms, FILE *stream, const char *format,...) noexcept
Convenient fprintf() invocation, prepending the given elapsed_ms timestamp.
Timespec structure using int64_t for its components in analogy to struct timespec_t on 64-bit platfor...
constexpr uint64_t to_ms() const noexcept
Returns time in milliseconds.