Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
QGles2SwapChainRenderTarget Struct Reference

#include <qrhigles2_p.h>

+ Inheritance diagram for QGles2SwapChainRenderTarget:
+ Collaboration diagram for QGles2SwapChainRenderTarget:

Public Member Functions

 QGles2SwapChainRenderTarget (QRhiImplementation *rhi, QRhiSwapChain *swapchain)
 
 ~QGles2SwapChainRenderTarget ()
 
void destroy () override
 Releases (or requests deferred releasing of) the underlying native graphics resources.
 
QSize pixelSize () const override
 
float devicePixelRatio () const override
 
int sampleCount () const override
 
- Public Member Functions inherited from QRhiSwapChainRenderTarget
QRhiResource::Type resourceType () const override
 
QRhiSwapChainswapChain () const
 
- Public Member Functions inherited from QRhiRenderTarget
QRhiRenderPassDescriptorrenderPassDescriptor () const
 
void setRenderPassDescriptor (QRhiRenderPassDescriptor *desc)
 Sets the QRhiRenderPassDescriptor desc for use with this render target.
 
- 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
 
QRhirhi () const
 

Public Attributes

QGles2RenderTargetData d
 

Additional Inherited Members

- Public Types inherited from QRhiResource
enum  Type {
  Buffer , Texture , Sampler , RenderBuffer ,
  RenderPassDescriptor , SwapChainRenderTarget , TextureRenderTarget , ShaderResourceBindings ,
  GraphicsPipeline , SwapChain , ComputePipeline , CommandBuffer
}
 Specifies type of the resource. More...
 
- Protected Member Functions inherited from QRhiSwapChainRenderTarget
 QRhiSwapChainRenderTarget (QRhiImplementation *rhi, QRhiSwapChain *swapchain_)
 
- Protected Member Functions inherited from QRhiRenderTarget
 QRhiRenderTarget (QRhiImplementation *rhi)
 
- Protected Member Functions inherited from QRhiResource
 QRhiResource (QRhiImplementation *rhi)
 
- Protected Attributes inherited from QRhiSwapChainRenderTarget
QRhiSwapChainm_swapchain
 
- Protected Attributes inherited from QRhiRenderTarget
QRhiRenderPassDescriptorm_renderPassDesc = nullptr
 
- Protected Attributes inherited from QRhiResource
QRhiImplementationm_rhi = nullptr
 
quint64 m_id
 
QByteArray m_objectName
 

Detailed Description

Definition at line 190 of file qrhigles2_p.h.

Constructor & Destructor Documentation

◆ QGles2SwapChainRenderTarget()

QGles2SwapChainRenderTarget::QGles2SwapChainRenderTarget ( QRhiImplementation * rhi,
QRhiSwapChain * swapchain )

Definition at line 5843 of file qrhigles2.cpp.

◆ ~QGles2SwapChainRenderTarget()

QGles2SwapChainRenderTarget::~QGles2SwapChainRenderTarget ( )

Definition at line 5849 of file qrhigles2.cpp.

References destroy().

+ Here is the call graph for this function:

Member Function Documentation

◆ destroy()

void QGles2SwapChainRenderTarget::destroy ( )
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.

Note
Resources referenced by commands for the current frame should not be released until the frame is submitted by QRhi::endFrame().

The QRhiResource destructor also performs the same task, so calling this function is not necessary before deleting a QRhiResource.

See also
deleteLater()

Implements QRhiResource.

Definition at line 5854 of file qrhigles2.cpp.

Referenced by ~QGles2SwapChainRenderTarget().

+ Here is the caller graph for this function:

◆ devicePixelRatio()

float QGles2SwapChainRenderTarget::devicePixelRatio ( ) const
overridevirtual
Returns
the device pixel ratio. For QRhiTextureRenderTarget this is always
  1. For targets retrieved from a QRhiSwapChain the value reflects the \l{QWindow::devicePixelRatio()}{device pixel ratio} of the targeted QWindow.

Implements QRhiRenderTarget.

Definition at line 5864 of file qrhigles2.cpp.

References d, and QGles2RenderTargetData::dpr.

◆ pixelSize()

QSize QGles2SwapChainRenderTarget::pixelSize ( ) const
overridevirtual
Returns
the size in pixels.

Valid only after create() has been called successfully. Until then the result is a default-constructed QSize.

With QRhiTextureRenderTarget the returned size is the size of the associated attachments at the time of create(), in practice the size of the first color attachment, or the depth/stencil buffer if there are no color attachments. If the associated textures or renderbuffers are resized and rebuilt afterwards, then pixelSize() performs an implicit call to create() in order to rebuild the underlying data structures. This implicit check is similar to what QRhiCommandBuffer::beginPass() does, and ensures that the returned size is always up-to-date.

Implements QRhiRenderTarget.

Definition at line 5859 of file qrhigles2.cpp.

References d, and QGles2RenderTargetData::pixelSize.

◆ sampleCount()

int QGles2SwapChainRenderTarget::sampleCount ( ) const
overridevirtual
Returns
the sample count or 1 if multisample antialiasing is not relevant for this render target.

Implements QRhiRenderTarget.

Definition at line 5869 of file qrhigles2.cpp.

References d, and QGles2RenderTargetData::sampleCount.

Member Data Documentation

◆ d


The documentation for this struct was generated from the following files: