24#include <SDL2/SDL_video.h>
36 return 0 == SDL_GL_GetAttribute(attr, &
value);
39bool Surface::setSwapIntervalImpl(
int v)
noexcept {
40 if( 0 == SDL_GL_SetSwapInterval( v ) ) {
44 if( -1 == v && 0 == SDL_GL_SetSwapInterval( 1 ) ) {
53 if( !surface->isValid() ) {
88 if( !surface->isValid() ) {
89 printf(
"SDL: Error creating GL context: Invalid surface: %s\n", surface->toString().c_str());
94 printf(
"Surface::createContext: shareWith %p, profile %s, ctx %s, surface %s\n",
95 (
void*)shareWith, profile.toString().c_str(),
to_string(contextFlags).c_str(), surface->toString().c_str());
97 SDL_Window* sdl_win =
reinterpret_cast<SDL_Window*
>(surface->surfaceHandle());
99 surface->setSwapIntervalImpl( surface->swapInterval() );
103 ctxFlags |= SDL_GL_CONTEXT_DEBUG_FLAG;
106 ctxFlags |= SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG;
108 SDL_GL_SetAttribute(SDL_GL_CONTEXT_FLAGS, ctxFlags);
112 SDL_GL_SetAttribute(SDL_GL_SHARE_WITH_CURRENT_CONTEXT, 1);
115 printf(
"Surface::createContext.1: surface %s\n", surface->toString().c_str());
119 bool use_glp_core =
false;
124 SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
126 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 4);
128 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
132 if( !use_glp_core ) {
133 SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_ES);
134 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
135 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 0);
137 SDL_GLContext sdl_glc = SDL_GL_CreateContext(sdl_win);
138 if (
nullptr == sdl_glc) {
140 printf(
"SDL: Error creating %s context: %s\n", glp_in.
toString().c_str(), SDL_GetError());
143 printf(
"SDL: Error creating GL ES 3 context: %s\n", SDL_GetError());
144 SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_ES);
145 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2);
146 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 0);
147 sdl_glc = SDL_GL_CreateContext(sdl_win);
148 if (
nullptr == sdl_glc) {
149 printf(
"SDL: Error creating GL ES 2 context: %s\n", SDL_GetError());
153 if (0 != SDL_GL_MakeCurrent(sdl_win, sdl_glc)) {
154 printf(
"SDL: Error making GL context current: %s\n", SDL_GetError());
155 SDL_GL_DeleteContext(sdl_glc);
158 const char* gl_version_cstr =
reinterpret_cast<const char*
>( glGetString(GL_VERSION) );
159 if (
nullptr == gl_version_cstr) {
160 printf(
"SDL: Error retrieving GL version: %s\n", SDL_GetError());
161 SDL_GL_DeleteContext(sdl_glc);
165 int major, minor, nContextFlags, nProfileMask;
170 ok = ok &&
GetGLAttribute(SDL_GL_CONTEXT_PROFILE_MASK, nProfileMask);
172 printf(
"SDL: Error retrieving GL context version information: %s\n", SDL_GetError());
173 SDL_GL_DeleteContext(sdl_glc);
177 if( 0 != ( nProfileMask & SDL_GL_CONTEXT_PROFILE_CORE ) ) {
179 }
else if( 0 != ( nProfileMask & SDL_GL_CONTEXT_PROFILE_COMPATIBILITY ) ) {
181 }
else if( 0 != ( nProfileMask & SDL_GL_CONTEXT_PROFILE_ES ) ) {
185 if( 0 != ( nContextFlags & SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG ) ) {
188 if( 0 != ( nContextFlags & SDL_GL_CONTEXT_DEBUG_FLAG ) ) {
191 if( 0 != ( nContextFlags & SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG ) ) {
198 printf(
"Surface::createContext.2: GLProfile (query) %s\n", glp_out0.
toString().c_str());
199 printf(
"Surface::createContext.2: GLProfile (version) %s\n", glp_out.
toString().c_str());
207 SDL_GL_SwapWindow(
reinterpret_cast<SDL_Window*
>(
windowHandle()));
220 SDL_GLContext sdl_glc =
reinterpret_cast<SDL_GLContext
>(
context());
225 SDL_GL_DeleteContext(sdl_glc);
231 if( !surface || !surface->isValid() || !context) {
232 printf(
"SDL: Error GLContext::makeCurrent: Invalid surface/context: surface %s, context %p\n",
233 surface ? surface->toString().c_str() :
"nil", (
void*)context);
236 SDL_Window* sdl_win =
reinterpret_cast<SDL_Window*
>(surface->surfaceHandle());
237 SDL_GLContext sdl_glc =
reinterpret_cast<SDL_GLContext
>(context);
238 if (0 != SDL_GL_MakeCurrent(sdl_win, sdl_glc)) {
244void gamp::render::gl::GLContext::releaseContextImpl(
const gamp::wt::SurfaceRef& surface)
noexcept {
245 if( !surface || !surface->isValid() ) {
246 printf(
"SDL: Error GLContext::release: Invalid surface: surface %s\n",
247 surface ? surface->toString().c_str() :
"nil");
250 SDL_Window* sdl_win =
reinterpret_cast<SDL_Window*
>(surface->surfaceHandle());
251 SDL_GL_MakeCurrent(sdl_win,
nullptr);
constexpr gamp::handle_t context() const noexcept
Specifies the render profile.
constexpr const jau::util::VersionNumber & version() const noexcept
constexpr int stencilBits() const noexcept
Returns the number of stencil buffer bits.
constexpr int accumGreenBits() const noexcept
Returns the number of bits for the accumulation buffer's green component.
constexpr int accumBlueBits() const noexcept
Returns the number of bits for the accumulation buffer's blue component.
constexpr int depthBits() const noexcept
Returns the number of depth buffer bits.
constexpr void setDoubleBuffered(bool enable) noexcept
Enables or disables double buffering.
constexpr int accumAlphaBits() const noexcept
Returns the number of bits for the accumulation buffer's alpha component.
constexpr int accumRedBits() const noexcept
Returns the number of bits for the accumulation buffer's red component.
constexpr void setStereo(bool enable) noexcept
Enables or disables stereo viewing.
OpenGL Rendering Context.
bool isCurrent() const noexcept
void dispose() noexcept override
void disposedNotify() override
void releaseContext() noexcept override
Release this context (used for OpenGL, but a NOP on Vulkan)
static RenderContextPtr create(gamp::handle_t context, GLProfile profile, RenderContextFlags contextFlags, const char *gl_version_cstr) noexcept
Create a new instance of a non-current context.
Specifies the OpenGL profile.
std::string toString() const override
constexpr bool isGLES() const noexcept
Indicates whether this profile is capable of GLES.
static const GLProfile & downcast(const RenderProfile &rp)
Downcast dereferenced given const RenderProfile& to const GLProfile&, throws exception if signature d...
static const jau::type_info & GLSignature() noexcept
A class for storing and comparing OpenGL version numbers.
static GLVersionNumber create(const std::string &versionString) noexcept
constexpr int redBits() const noexcept
Returns the number of bits for the color buffer's red component.
constexpr int greenBits() const noexcept
Returns the number of bits for the color buffer's green component.
constexpr int blueBits() const noexcept
Returns the number of bits for the color buffer's blue component.
constexpr int alphaBits() const noexcept
Returns the number of bits for the color buffer's alpha component.
bool createContext(const gamp::render::RenderProfile &profile, const gamp::render::RenderContextFlags &contextFlags)
constexpr handle_t windowHandle() const noexcept
Returns the handle to the surface for this NativeSurface.
bool isValid() const noexcept override
bool surfaceSwap() noexcept override
Provide a mechanism to utilize custom (pre-) swap surface code.
Simple version number class containing a version number either being defined explicit or derived from...
constexpr int major() const noexcept
static bool GetGLAttribute(SDL_GLattr attr, int &value) noexcept
constexpr bool value(const Bool rhs) noexcept
constexpr bool is_set(const E mask, const E bits) noexcept
GLProfileMask
OpenGL profile-mask bits.
std::unique_ptr< GLCapabilities > GLCapabilitiesPtr
@ compat
Desktop compatibility profile.
@ core
Desktop core profile.
std::unique_ptr< RenderContext > RenderContextPtr
RenderContextFlags
OpenGL context flags.
@ verbose
Verbose operations (debugging).
@ compatible
Compatible context.
std::unique_ptr< Capabilities > CapabilitiesPtr
std::shared_ptr< Surface > SurfaceRef
uintptr_t handle_t
A native handle type, big enough to store a pointer.
std::string to_string(const math_error_t v) noexcept
Returns std::string representation of math_error_t.
Gamp: Graphics, Audio, Multimedia and Processing Framework (Native C++, WebAssembly,...
Author: Sven Gothel sgothel@jausoft.com Copyright Gothel Software e.K.
int printf(const char *format,...)
Operating Systems predefined macros.