![]() |
Qt 6.x
The Qt SDK
|
#include <qrhid3d11_p.h>
Public Member Functions | |
QD3D11TextureRenderTarget (QRhiImplementation *rhi, const QRhiTextureRenderTargetDescription &desc, Flags flags) | |
~QD3D11TextureRenderTarget () | |
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 |
QRhiRenderPassDescriptor * | newCompatibleRenderPassDescriptor () override |
bool | create () override |
Creates the corresponding native graphics resources. | |
![]() | |
QRhiResource::Type | resourceType () const override |
QRhiTextureRenderTargetDescription | description () const |
void | setDescription (const QRhiTextureRenderTargetDescription &desc) |
Sets the render target description desc. | |
Flags | flags () const |
void | setFlags (Flags f) |
Sets the flags to f. | |
virtual QRhiRenderPassDescriptor * | newCompatibleRenderPassDescriptor ()=0 |
virtual bool | create ()=0 |
Creates the corresponding native graphics resources. | |
![]() | |
virtual QSize | pixelSize () const =0 |
virtual float | devicePixelRatio () const =0 |
virtual int | sampleCount () const =0 |
QRhiRenderPassDescriptor * | renderPassDescriptor () const |
void | setRenderPassDescriptor (QRhiRenderPassDescriptor *desc) |
Sets the QRhiRenderPassDescriptor desc for use with this render target. | |
![]() | |
virtual | ~QRhiResource () |
Destructor. | |
virtual Type | resourceType () const =0 |
virtual void | destroy ()=0 |
Releases (or requests deferred releasing of) the underlying native graphics resources. | |
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 | |
QD3D11RenderTargetData | d |
bool | ownsRtv [QD3D11RenderTargetData::MAX_COLOR_ATTACHMENTS] |
ID3D11RenderTargetView * | rtv [QD3D11RenderTargetData::MAX_COLOR_ATTACHMENTS] |
bool | ownsDsv = false |
ID3D11DepthStencilView * | dsv = nullptr |
Friends | |
class | QRhiD3D11 |
Definition at line 162 of file qrhid3d11_p.h.
QD3D11TextureRenderTarget::QD3D11TextureRenderTarget | ( | QRhiImplementation * | rhi, |
const QRhiTextureRenderTargetDescription & | desc, | ||
Flags | flags | ||
) |
Definition at line 3695 of file qrhid3d11.cpp.
References i, QD3D11RenderTargetData::MAX_COLOR_ATTACHMENTS, ownsRtv, and rtv.
QD3D11TextureRenderTarget::~QD3D11TextureRenderTarget | ( | ) |
Definition at line 3707 of file qrhid3d11.cpp.
References destroy().
|
overridevirtual |
Creates the corresponding native graphics resources.
If there are already resources present due to an earlier create() with no corresponding destroy(), then destroy() is called implicitly first.
true
when successful, false
when a graphics operation failed. Regardless of the return value, calling destroy() is always safe. Implements QRhiTextureRenderTarget.
Definition at line 3744 of file qrhid3d11.cpp.
References QRhiTexture::arrayRangeLength(), QRhiTexture::arrayRangeStart(), QRhiTexture::arraySize(), QRhiTextureRenderTargetDescription::cbeginColorAttachments(), QRhiTextureRenderTargetDescription::cendColorAttachments(), QRhiTextureRenderTargetDescription::colorAttachmentCount(), QD3D11RenderTargetData::colorAttCount, QRhiTexture::CubeMap, QD3D11RenderTargetData::currentResIdList, d, QRhiTextureRenderTargetDescription::depthStencilBuffer(), QRhiTextureRenderTargetDescription::depthTexture(), destroy(), QD3D11RenderTargetData::dpr, QD3D11RenderTargetData::dsAttCount, QD3D11RenderBuffer::dsv, QD3D11RenderTargetData::dsv, dsv, QRhiTexture::flags(), QRhiTexture::format(), i, it, QRhiColorAttachment::layer(), QRhiColorAttachment::level(), QRhiTextureRenderTarget::m_desc, QRhiRenderTarget::m_renderPassDesc, QD3D11RenderTargetData::MAX_COLOR_ATTACHMENTS, QRhiTexture::OneDimensional, ownsDsv, ownsRtv, QRhiTexture::pixelSize(), QRhiRenderBuffer::pixelSize(), QD3D11RenderTargetData::pixelSize, Q_ASSERT, qMax(), qPrintable, QRHI_RES, QRHI_RES_RHI, qWarning, QRhiColorAttachment::renderBuffer(), QD3D11RenderTargetData::rp, QD3D11RenderBuffer::rtv, QD3D11RenderTargetData::rtv, rtv, QD3D11RenderTargetData::sampleCount, QD3D11RenderBuffer::sampleDesc, QD3D11Texture::sampleDesc, QD3D11Texture::tex, QRhiColorAttachment::texture(), QRhiTexture::TextureArray, QD3D11Texture::textureResource(), QRhiTexture::ThreeDimensional, toD3DDepthTextureDSVFormat(), and toD3DTextureFormat().
Referenced by QRhiD3D11::beginPass(), and pixelSize().
|
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 3712 of file qrhid3d11.cpp.
References dsv, i, QD3D11RenderTargetData::MAX_COLOR_ATTACHMENTS, ownsDsv, ownsRtv, QRHI_RES_RHI, and rtv.
Referenced by ~QD3D11TextureRenderTarget(), and create().
|
overridevirtual |
Implements QRhiRenderTarget.
Definition at line 3902 of file qrhid3d11.cpp.
References d, and QD3D11RenderTargetData::dpr.
|
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 render target that has a \l{QRhiRenderPassDescriptor::isCompatible()}{compatible} QRhiRenderPassDescriptor set.
Two QRhiTextureRenderTarget instances can share the same render pass descriptor as long as they have the same number and type of attachments. The associated QRhiTexture or QRhiRenderBuffer instances are not part of the render pass descriptor so those can differ in the two QRhiTextureRenderTarget instances.
Implements QRhiTextureRenderTarget.
Definition at line 3736 of file qrhid3d11.cpp.
References QRhiResource::m_rhi, and QRHI_RES_RHI.
|
overridevirtual |
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 3894 of file qrhid3d11.cpp.
References create(), QD3D11RenderTargetData::currentResIdList, d, QRhiTextureRenderTarget::m_desc, and QD3D11RenderTargetData::pixelSize.
|
overridevirtual |
Implements QRhiRenderTarget.
Definition at line 3907 of file qrhid3d11.cpp.
References d, and QD3D11RenderTargetData::sampleCount.
|
friend |
Definition at line 180 of file qrhid3d11_p.h.
QD3D11RenderTargetData QD3D11TextureRenderTarget::d |
Definition at line 175 of file qrhid3d11_p.h.
Referenced by create(), devicePixelRatio(), pixelSize(), and sampleCount().
ID3D11DepthStencilView* QD3D11TextureRenderTarget::dsv = nullptr |
Definition at line 179 of file qrhid3d11_p.h.
bool QD3D11TextureRenderTarget::ownsDsv = false |
Definition at line 178 of file qrhid3d11_p.h.
bool QD3D11TextureRenderTarget::ownsRtv[QD3D11RenderTargetData::MAX_COLOR_ATTACHMENTS] |
Definition at line 176 of file qrhid3d11_p.h.
Referenced by QD3D11TextureRenderTarget(), create(), and destroy().
ID3D11RenderTargetView* QD3D11TextureRenderTarget::rtv[QD3D11RenderTargetData::MAX_COLOR_ATTACHMENTS] |
Definition at line 177 of file qrhid3d11_p.h.
Referenced by QD3D11TextureRenderTarget(), create(), and destroy().