12#ifndef GAMP_RENDER_RENDERCONTEXT_HPP_
13#define GAMP_RENDER_RENDERCONTEXT_HPP_
64 constexpr static std::string_view
RP_UNDEF =
"undef";
67 std::string_view m_profile;
88 : m_profile(profile), m_version(
version)
96 constexpr const std::string_view&
name() const noexcept {
return m_profile; }
99 return signature() == rhs.signature() && m_profile == rhs.m_profile && m_version == rhs.version();
103 return std::string(
"RenderProfile[").append(
signature().
name()).append(
", ")
104 .append(
name()).append(
" ").append(m_version.toString()).append(
"]");
126 : m_context(0), m_version(), m_flags() { }
140 constexpr bool isValid() const noexcept {
return 0 != m_context; }
176 virtual std::string
toString()
const;
virtual void dispose() noexcept
RenderContext(Private) noexcept
Private: Create an invalid instance.
AttachableRef attachObject(std::string_view key, const AttachableRef &obj)
Attaches user object for the given name, overwrites old mapping if exists.
virtual ~RenderContext() noexcept=default
AttachableRef getAttachedObject(std::string_view key) const
Returns the attached user object for the given name.
void clearAttachedObjects()
Clears the attachment map.
virtual std::string toString() const
gamp::wt::SurfaceRef m_surface
RenderContext(Private, gamp::handle_t context, RenderContextFlags contextFlags, const jau::util::VersionNumber &version) noexcept
Private: Create an instance.
AttachableRef detachObject(std::string_view key)
Removes attached object if exists and returns it, otherwise returns nullptr.
virtual const jau::type_info & signature() const noexcept
constexpr gamp::handle_t context() const noexcept
virtual void disposedNotify()
virtual void releaseContext() noexcept
Release this context (used for OpenGL, but a NOP on Vulkan)
constexpr RenderContextFlags contextFlags() const noexcept
constexpr const jau::util::VersionNumber & version() const
virtual bool makeCurrent(const gamp::wt::SurfaceRef &s) noexcept
Make this context current (used for OpenGL, but a NOP on Vulkan)
const gamp::wt::SurfaceRef & boundSurface() const noexcept
virtual const RenderProfile & renderProfile() const noexcept
constexpr bool isValid() const noexcept
Specifies the render profile.
virtual std::string toString() const
constexpr const jau::util::VersionNumber & version() const noexcept
constexpr RenderProfile(const std::string_view profile, const jau::util::VersionNumber &version) noexcept
Create an instance w/ unique name.
virtual ~RenderProfile() noexcept=default
constexpr const std::string_view & name() const noexcept
virtual void clear() noexcept
virtual const jau::type_info & signature() const noexcept
constexpr bool operator==(const RenderProfile &rhs) const noexcept
constexpr RenderProfile() noexcept
Create an undefined instance.
static const RenderProfile & getUndef() noexcept
static constexpr std::string_view RP_UNDEF
The default profile, used for the device default profile map.
Generic type information using either Runtime type information (RTTI) or Compile time type informatio...
Simple version number class containing a version number either being defined explicit or derived from...
Simple version number class containing a version number either being defined explicit or derived from...
#define JAU_MAKE_BITFIELD_ENUM_STRING(type,...)
std::ostream & operator<<(std::ostream &os, const T v)
const jau::type_info & static_ctti() noexcept
Returns a static global reference of make_ctti<T>(true) w/ identity instance.
std::shared_ptr< RenderContext > RenderContextRef
std::unique_ptr< RenderContext > RenderContextPtr
RenderContextFlags
OpenGL context flags.
@ verbose
Verbose operations (debugging).
@ compatible
Compatible context.
@ software
Software rasterizer context.
std::shared_ptr< Surface > SurfaceRef
uintptr_t handle_t
A native handle type, big enough to store a pointer.
std::shared_ptr< Attachable > AttachableRef
StringHashMapWrap< AttachableRef, std::nullptr_t, nullptr > StringAttachables
Author: Sven Gothel sgothel@jausoft.com Copyright Gothel Software e.K.
__pack(...): Produces MSVC, clang and gcc compatible lead-in and -out macros.