11#ifndef GAMP_WTSURFACE_HPP_
12#define GAMP_WTSURFACE_HPP_
31 using namespace jau::fractions_i64_literals;
32 using namespace jau::math;
38 class Surface :
public std::enable_shared_from_this<Surface> {
51 int m_swapInterval = -1;
60 void disposeImpl(
handle_t)
noexcept {}
61 bool setSwapIntervalImpl(
int v)
noexcept;
67 template <
typename ChildT>
69 return std::static_pointer_cast<ChildT>(shared_from_this());
80 : m_surface_handle(surface_handle), m_surface_size(surface_size) { }
83 return std::make_shared<Surface>(
Private(), surface_handle, surface_size);
93 if( m_surface_lock.isOwner() ) {
100 m_renderContext =
nullptr;
103 if( m_renderContext ) {
104 m_renderContext->dispose();
105 m_renderContext =
nullptr;
107 if( m_surface_handle ) {
108 disposeImpl(m_surface_handle);
109 m_surface_handle = 0;
117 if( rc && rc->isValid() ) {
118 m_renderContext = std::move(rc);
119 m_capsptr = retrieveCaps(
shared());
130 return m_renderContext ? m_renderContext.get() :
nullptr;
133 return m_renderContext ? m_renderContext.get() :
nullptr;
151 if( m_renderContext && m_renderContext->isValid() ) {
152 return setSwapIntervalImpl(v);
190 virtual bool isValid() const noexcept {
return 0 != m_surface_handle; }
233 if( !m_surface_lock.tryLock(
TIMEOUT) ) {
236 if (1 == m_surface_lock.holdCount()) {
239 m_surface_lock.unlock();
261 m_surface_lock.validateLocked();
262 if (1 == m_surface_lock.holdCount()) {
265 m_surface_lock.unlock();
269 std::string res =
"Surface[";
271 .append(
", ").append(m_renderContext ? m_renderContext->toString() :
"nil-ctx")
272 .append(
", size ").append(m_surface_size.toString())
273 .append(
", ").append(m_capsptr?m_capsptr->toString():
"nocaps")
Specifies the render profile.
Specifies a set of capabilities that a window's rendering context must support, such as color depth p...
void operator=(const Surface &)=delete
gamp::render::RenderContext * renderContext() noexcept
static constexpr bool is_locked(const lock_status_t ls) noexcept
constexpr handle_t surfaceHandle() const noexcept
Returns the handle to the surface for this NativeSurface.
lock_status_t lockSurface()
Lock the surface of this native window.
const SurfaceRef shared()
const gamp::render::RenderContext * renderContext() const noexcept
Surface(const Surface &)=delete
void setSurfaceSize(const Vec2i &sz) noexcept
Surface(Private, handle_t surface_handle, const Vec2i &surface_size)
Private ctor for single Surface::create() method w/o public ctor.
void unlockSurface()
Unlock the surface of this native window.
static SurfaceRef create(handle_t surface_handle, const Vec2i &surface_size)
std::string toString() const noexcept
virtual ~Surface() noexcept
Releases this instance.
virtual bool isValid() const noexcept
virtual void nativeSurfaceUnlock() noexcept
constexpr int swapInterval() const noexcept
Returns desired or determined swap interval.
std::shared_ptr< ChildT > shared_from_base()
constexpr bool isBLOriented() const noexcept
Returns true if this surface is rendered in OpenGL's coordinate system, origin at bottom left.
virtual bool surfaceSwap() noexcept
Provide a mechanism to utilize custom (pre-) swap surface code.
const Capabilities * capabilities() const noexcept
virtual void dispose(const jau::fraction_timespec &) noexcept
static constexpr const jau::fraction_i64 TIMEOUT
virtual void disposedNotify(const jau::fraction_timespec &) noexcept
constexpr const Vec2i & surfaceSize() const noexcept
Returns the surface size of the client area excluding insets (window decorations) in pixel units.
bool setSwapInterval(int v) noexcept
Returns true if swap interval could be set with the native toolkit post createContext().
virtual lock_status_t nativeSurfaceLock() noexcept
bool createContext(const gamp::render::RenderProfile &profile, const gamp::render::RenderContextFlags &contextFlags)
fraction< int64_t > fraction_i64
fraction using int64_t as integral type
std::unique_ptr< RenderContext > RenderContextPtr
RenderContextFlags
OpenGL context flags.
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_hexstring(value_type const &v, const bool skipLeading0x=false) noexcept
Produce a lower-case hexadecimal string representation with leading 0x in MSB of the given pointer.
std::string threadName(const std::thread::id id) noexcept
Timespec structure using int64_t for its components in analogy to struct timespec_t on 64-bit platfor...