Exposes WebGPU-specific functionality of a buffer object. More...
#include <BufferWebGPU.h>
Public Member Functions | |
virtual WGPUBuffer DILIGENT_CALL_TYPE | GetWebGPUBuffer () const =0 |
Returns WebGPU buffer handle. | |
![]() | |
virtual const BufferDesc &DILIGENT_CALL_TYPE | GetDesc () const override=0 |
Returns the buffer description used to create the object. | |
virtual void DILIGENT_CALL_TYPE | CreateView (const BufferViewDesc &ViewDesc, IBufferView **ppView)=0 |
Creates a new buffer view. | |
virtual IBufferView *DILIGENT_CALL_TYPE | GetDefaultView (BUFFER_VIEW_TYPE ViewType)=0 |
Returns the pointer to the default view. | |
virtual Uint64 DILIGENT_CALL_TYPE | GetNativeHandle ()=0 |
Returns native buffer handle specific to the underlying graphics API. | |
virtual void DILIGENT_CALL_TYPE | SetState (RESOURCE_STATE State)=0 |
Sets the buffer usage state. | |
virtual RESOURCE_STATE DILIGENT_CALL_TYPE | GetState () const =0 |
Returns the internal buffer state. | |
virtual MEMORY_PROPERTIES DILIGENT_CALL_TYPE | GetMemoryProperties () const =0 |
Returns the buffer memory properties, see Diligent::MEMORY_PROPERTIES. | |
virtual void DILIGENT_CALL_TYPE | FlushMappedRange (Uint64 StartOffset, Uint64 Size)=0 |
virtual void DILIGENT_CALL_TYPE | InvalidateMappedRange (Uint64 StartOffset, Uint64 Size)=0 |
virtual SparseBufferProperties DILIGENT_CALL_TYPE | GetSparseProperties () const =0 |
Returns the sparse buffer memory properties. | |
![]() | |
virtual Int32 DILIGENT_CALL_TYPE | GetUniqueID () const =0 |
Returns unique identifier assigned to an object. | |
virtual void DILIGENT_CALL_TYPE | SetUserData (IObject *pUserData)=0 |
Stores a pointer to the user-provided data object. | |
virtual IObject *DILIGENT_CALL_TYPE | GetUserData () const =0 |
Returns a pointer to the user data object previously set with SetUserData() method. | |
![]() | |
virtual void DILIGENT_CALL_TYPE | QueryInterface (const INTERFACE_ID &IID, IObject **ppInterface)=0 |
Queries the specific interface. | |
virtual ReferenceCounterValueType DILIGENT_CALL_TYPE | AddRef ()=0 |
Increments the number of strong references by 1. | |
virtual ReferenceCounterValueType DILIGENT_CALL_TYPE | Release ()=0 |
virtual IReferenceCounters *DILIGENT_CALL_TYPE | GetReferenceCounters () const =0 |
Exposes WebGPU-specific functionality of a buffer object.
|
pure virtual |
Returns WebGPU buffer handle.
The application must not destroy the returned buffer Returns a WebGPU handle of the internal buffer object.