Buffer object implementation in Vulkan backend. More...
#include <BufferVkImpl.hpp>
Public Member Functions | |
| virtual VkBuffer DILIGENT_CALL_TYPE | GetVkBuffer () const override final |
| Implementation of IBufferVk::GetVkBuffer(). | |
| virtual Uint64 DILIGENT_CALL_TYPE | GetNativeHandle () override final |
| Implementation of IBuffer::GetNativeHandle() in Vulkan backend. | |
| virtual void DILIGENT_CALL_TYPE | SetAccessFlags (VkAccessFlags AccessFlags) override final |
| Implementation of IBufferVk::SetAccessFlags(). | |
| virtual VkAccessFlags DILIGENT_CALL_TYPE | GetAccessFlags () const override final |
| Implementation of IBufferVk::GetAccessFlags(). | |
| virtual VkDeviceAddress DILIGENT_CALL_TYPE | GetVkDeviceAddress () const override final |
| Implementation of IBufferVk::GetVkDeviceAddress(). | |
| virtual void DILIGENT_CALL_TYPE | FlushMappedRange (Uint64 StartOffset, Uint64 Size) override final |
| Implementation of IBuffer::FlushMappedRange(). | |
| virtual void DILIGENT_CALL_TYPE | InvalidateMappedRange (Uint64 StartOffset, Uint64 Size) override final |
| Implementation of IBuffer::InvalidateMappedRange(). | |
| virtual SparseBufferProperties DILIGENT_CALL_TYPE | GetSparseProperties () const override final |
| Implementation of IBuffer::GetSparseProperties(). | |
Public Member Functions inherited from Diligent::BufferBase< EngineVkImplTraits > | |
| BufferBase (IReferenceCounters *pRefCounters, TBuffViewObjAllocator &BuffViewObjAllocator, RenderDeviceImplType *pDevice, const BufferDesc &BuffDesc, bool bIsDeviceInternal) | |
| virtual void DILIGENT_CALL_TYPE | CreateView (const struct BufferViewDesc &ViewDesc, IBufferView **ppView) override |
| virtual IBufferView *DILIGENT_CALL_TYPE | GetDefaultView (BUFFER_VIEW_TYPE ViewType) override |
| Implementation of IBuffer::GetDefaultView(). | |
| void | CreateDefaultViews () |
| Creates default buffer views. | |
| BufferBase (IReferenceCounters *pRefCounters, TBuffViewObjAllocator &BuffViewObjAllocator, RenderDeviceImplType *pDevice, const BufferDesc &BuffDesc, bool bIsDeviceInternal) | |
| virtual void DILIGENT_CALL_TYPE | CreateView (const struct BufferViewDesc &ViewDesc, IBufferView **ppView) override |
| virtual IBufferView *DILIGENT_CALL_TYPE | GetDefaultView (BUFFER_VIEW_TYPE ViewType) override |
| Implementation of IBuffer::GetDefaultView(). | |
| void | CreateDefaultViews () |
| Creates default buffer views. | |
Public Member Functions inherited from Diligent::DeviceObjectBase< BaseInterface, RenderDeviceImplType, ObjectDescType > | |
| DeviceObjectBase (IReferenceCounters *pRefCounters, RenderDeviceImplType *pDevice, const ObjectDescType &ObjDesc, bool bIsDeviceInternal=false) | |
| virtual Int32 DILIGENT_CALL_TYPE | GetUniqueID () const override final |
| Returns unique identifier. | |
| virtual void DILIGENT_CALL_TYPE | SetUserData (IObject *pUserData) override final |
| Implementation of IDeviceObject::SetUserData. | |
| virtual IObject *DILIGENT_CALL_TYPE | GetUserData () const override final |
| Implementation of IDeviceObject::GetUserData. | |
Additional Inherited Members | |
Protected Attributes inherited from Diligent::BufferBase< EngineVkImplTraits > | |
| std::unique_ptr< BufferViewImplType, STDDeleter< BufferViewImplType, TBuffViewObjAllocator > > | m_pDefaultUAV |
| Default UAV addressing the entire buffer. | |
| std::unique_ptr< BufferViewImplType, STDDeleter< BufferViewImplType, TBuffViewObjAllocator > > | m_pDefaultSRV |
| Default SRV addressing the entire buffer. | |
| std::unique_ptr< BufferViewImplType, STDDeleter< BufferViewImplType, TBuffViewObjAllocator > > | m_pDefaultUAV |
| Default UAV addressing the entire buffer. | |
| std::unique_ptr< BufferViewImplType, STDDeleter< BufferViewImplType, TBuffViewObjAllocator > > | m_pDefaultSRV |
| Default SRV addressing the entire buffer. | |
Protected Attributes inherited from Diligent::DeviceObjectBase< BaseInterface, RenderDeviceImplType, ObjectDescType > | |
| RenderDeviceImplType *const | m_pDevice |
| Pointer to the device. | |
| ObjectDescType | m_Desc |
| Object description. | |
Buffer object implementation in Vulkan backend.