![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include <qrhivulkan_p.h>
Public Member Functions | |
| QVkSwapChainRenderTarget (QRhiImplementation *rhi, QRhiSwapChain *swapchain) | |
| ~QVkSwapChainRenderTarget () | |
| 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 |
| QRhiSwapChain * | swapChain () const |
| Public Member Functions inherited from QRhiRenderTarget | |
| QRhiRenderPassDescriptor * | renderPassDescriptor () 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 |
| QRhi * | rhi () const |
Public Attributes | |
| QVkRenderTargetData | d |
Definition at line 210 of file qrhivulkan_p.h.
| QVkSwapChainRenderTarget::QVkSwapChainRenderTarget | ( | QRhiImplementation * | rhi, |
| QRhiSwapChain * | swapchain ) |
Definition at line 7725 of file qrhivulkan.cpp.
References QVkSwapChainRenderTarget().
Referenced by QVkSwapChainRenderTarget().
| QVkSwapChainRenderTarget::~QVkSwapChainRenderTarget | ( | ) |
Definition at line 7730 of file qrhivulkan.cpp.
References 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.
The QRhiResource destructor also performs the same task, so calling this function is not necessary before deleting a QRhiResource.
Implements QRhiResource.
Definition at line 7735 of file qrhivulkan.cpp.
Referenced by ~QVkSwapChainRenderTarget().
|
overridevirtual |
Implements QRhiRenderTarget.
Definition at line 7745 of file qrhivulkan.cpp.
|
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 7740 of file qrhivulkan.cpp.
|
overridevirtual |
Implements QRhiRenderTarget.
Definition at line 7750 of file qrhivulkan.cpp.
| QVkRenderTargetData QVkSwapChainRenderTarget::d |
Definition at line 220 of file qrhivulkan_p.h.