![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include <qrhigles2_p.h>
Public Member Functions | |
QGles2SwapChain (QRhiImplementation *rhi) | |
~QGles2SwapChain () | |
void | destroy () override |
Releases (or requests deferred releasing of) the underlying native graphics resources. | |
QRhiCommandBuffer * | currentFrameCommandBuffer () override |
QRhiRenderTarget * | currentFrameRenderTarget () override |
QRhiRenderTarget * | currentFrameRenderTarget (StereoTargetBuffer targetBuffer) override |
QSize | surfacePixelSize () override |
bool | isFormatSupported (Format f) override |
QRhiRenderPassDescriptor * | newCompatibleRenderPassDescriptor () override |
bool | createOrResize () override |
Creates the swapchain if not already done and resizes the swapchain buffers to match the current size of the targeted surface. | |
void | initSwapChainRenderTarget (QGles2SwapChainRenderTarget *rt) |
Public Member Functions inherited from QRhiSwapChain | |
QRhiResource::Type | resourceType () const override |
QWindow * | window () const |
void | setWindow (QWindow *window) |
Sets the window. | |
QRhiSwapChainProxyData | proxyData () const |
void | setProxyData (const QRhiSwapChainProxyData &d) |
Sets the proxy data d. | |
Flags | flags () const |
void | setFlags (Flags f) |
Sets the flags f. | |
Format | format () const |
void | setFormat (Format f) |
Sets the format f. | |
QRhiRenderBuffer * | depthStencil () const |
void | setDepthStencil (QRhiRenderBuffer *ds) |
Sets the renderbuffer ds for use as a depth-stencil buffer. | |
int | sampleCount () const |
void | setSampleCount (int samples) |
Sets the sample count. | |
QRhiRenderPassDescriptor * | renderPassDescriptor () const |
void | setRenderPassDescriptor (QRhiRenderPassDescriptor *desc) |
Associates with the QRhiRenderPassDescriptor desc. | |
QRhiShadingRateMap * | shadingRateMap () const |
void | setShadingRateMap (QRhiShadingRateMap *map) |
Associates with the specified QRhiShadingRateMap map. | |
QSize | currentPixelSize () const |
virtual QRhiSwapChainHdrInfo | hdrInfo () |
\variable QRhiSwapChainHdrInfo::limitsType | |
Public Member Functions inherited from QRhiResource | |
virtual | ~QRhiResource () |
Destructor. | |
void | deleteLater () |
When called without a frame being recorded, this function is equivalent to deleting the object. | |
QByteArray | name () const |
void | setName (const QByteArray &name) |
Sets a name for the object. | |
quint64 | globalResourceId () const |
QRhi * | rhi () const |
Public Attributes | |
QSurface * | surface = nullptr |
QSize | pixelSize |
QGles2SwapChainRenderTarget | rt |
QGles2SwapChainRenderTarget | rtLeft |
QGles2SwapChainRenderTarget | rtRight |
QGles2CommandBuffer | cb |
QGles2SwapChainTimestamps | timestamps |
int | currentTimestampPairIndex = 0 |
Definition at line 738 of file qrhigles2_p.h.
QGles2SwapChain::QGles2SwapChain | ( | QRhiImplementation * | rhi | ) |
Definition at line 6796 of file qrhigles2.cpp.
QGles2SwapChain::~QGles2SwapChain | ( | ) |
Definition at line 6805 of file qrhigles2.cpp.
|
overridevirtual |
Creates the swapchain if not already done and resizes the swapchain buffers to match the current size of the targeted surface.
Call this whenever the size of the target surface is different than before.
true
when successful, false
when a graphics operation failed. Regardless of the return value, calling destroy() is always safe. Implements QRhiSwapChain.
Definition at line 6873 of file qrhigles2.cpp.
|
overridevirtual |
Implements QRhiSwapChain.
Definition at line 6817 of file qrhigles2.cpp.
|
overridevirtual |
Implements QRhiSwapChain.
Definition at line 6822 of file qrhigles2.cpp.
|
overridevirtual |
When stereoscopic rendering is not supported, the return value will be the default target. It is supported by all hardware backends except for Metal, in combination with \l QSurfaceFormat::StereoBuffers, assuming it is supported by the graphics and display driver stack at run time. Metal and Null backends are going to return the default render target from this overload.
Reimplemented from QRhiSwapChain.
Definition at line 6827 of file qrhigles2.cpp.
|
overridevirtual |
Releases (or requests deferred releasing of) the underlying native graphics resources.
Safe to call multiple times, subsequent invocations will be a no-op then.
Once destroy() is called, the QRhiResource instance can be reused, by calling create()
again. That will then result in creating new native graphics resources underneath.
The QRhiResource destructor also performs the same task, so calling this function is not necessary before deleting a QRhiResource.
Implements QRhiResource.
Definition at line 6810 of file qrhigles2.cpp.
void QGles2SwapChain::initSwapChainRenderTarget | ( | QGles2SwapChainRenderTarget * | rt | ) |
Definition at line 6861 of file qrhigles2.cpp.
|
overridevirtual |
The main use of this function is to call it before the first createOrResize() after the window is already set. This allow the QRhi backends to perform platform or windowing system specific queries to determine if the window (and the screen it is on) is capable of true HDR output with the specified format.
When the format is reported as supported, call setFormat() to set the requested format and call createOrResize(). Be aware of the consequences however: successfully requesting a HDR format will involve having to deal with a different color space, possibly doing white level correction for non-HDR-aware content, adjusting tonemapping methods, adjusting offscreen render target settings, etc.
Implements QRhiSwapChain.
Definition at line 6848 of file qrhigles2.cpp.
|
overridevirtual |
The returned value is used in two ways: it can be passed to setRenderPassDescriptor() and QRhiGraphicsPipeline::setRenderPassDescriptor(). A render pass descriptor describes the attachments (color, depth/stencil) and the load/store behavior that can be affected by flags(). A QRhiGraphicsPipeline can only be used in combination with a swapchain that has a \l{QRhiRenderPassDescriptor::isCompatible()}{compatible} QRhiRenderPassDescriptor set.
Implements QRhiSwapChain.
Definition at line 6853 of file qrhigles2.cpp.
|
overridevirtual |
{QWindow::size() * QWindow::devicePixelRatio()}. With some graphics APIs and windowing system interfaces (for example, Vulkan) there is a theoretical possibility for a surface to assume a size different from the associated window. To support these cases, {rendering logic must always base size-derived calculations (such as, viewports) on the size reported from QRhiSwapChain, and never on the size queried from QWindow}.Implements QRhiSwapChain.
Definition at line 6837 of file qrhigles2.cpp.
QGles2CommandBuffer QGles2SwapChain::cb |
Definition at line 761 of file qrhigles2_p.h.
int QGles2SwapChain::currentTimestampPairIndex = 0 |
Definition at line 763 of file qrhigles2_p.h.
Referenced by QRhiGles2::beginFrame(), and QRhiGles2::endFrame().
QSize QGles2SwapChain::pixelSize |
Definition at line 757 of file qrhigles2_p.h.
QGles2SwapChainRenderTarget QGles2SwapChain::rt |
Definition at line 758 of file qrhigles2_p.h.
QGles2SwapChainRenderTarget QGles2SwapChain::rtLeft |
Definition at line 759 of file qrhigles2_p.h.
QGles2SwapChainRenderTarget QGles2SwapChain::rtRight |
Definition at line 760 of file qrhigles2_p.h.
QSurface* QGles2SwapChain::surface = nullptr |
Definition at line 756 of file qrhigles2_p.h.
QGles2SwapChainTimestamps QGles2SwapChain::timestamps |
Definition at line 762 of file qrhigles2_p.h.