Class WGPUResourceFactory
The WebGPU version of the resource factory.
Inherited Members
Namespace: Evergine.WebGPU
Assembly: Evergine.WebGPU.dll
Syntax
public class WGPUResourceFactory : ResourceFactory
Constructors
WGPUResourceFactory(WGPUGraphicsContext)
Initializes a new instance of the WGPUResourceFactory class.
Declaration
public WGPUResourceFactory(WGPUGraphicsContext graphicsContext)
Parameters
Type | Name | Description |
---|---|---|
WGPUGraphicsContext | graphicsContext | The Graphics Context. |
Properties
GraphicsContext
Gets the generic graphics context.
Declaration
protected override GraphicsContext GraphicsContext { get; }
Property Value
Type | Description |
---|---|
GraphicsContext |
Overrides
Methods
CreateBufferInternal(nint, ref BufferDescription)
Creates a Buffer instance.
Declaration
protected override Buffer CreateBufferInternal(nint data, ref BufferDescription description)
Parameters
Type | Name | Description |
---|---|---|
nint | data | Pointer to the data. |
BufferDescription | description | The description of the index buffer. |
Returns
Type | Description |
---|---|
Buffer | The new buffer. |
Overrides
CreateCommandQueueInternal(CommandQueueType)
Creates a CommandQueue instance.
Declaration
protected override CommandQueue CreateCommandQueueInternal(CommandQueueType queueType)
Parameters
Type | Name | Description |
---|---|---|
CommandQueueType | queueType | The command queue type, CommandQueueType. |
Returns
Type | Description |
---|---|
CommandQueue | The new command queue. |
Overrides
CreateComputePipelineInternal(ref ComputePipelineDescription)
Creates a ComputePipelineState instance.
Declaration
protected override ComputePipelineState CreateComputePipelineInternal(ref ComputePipelineDescription description)
Parameters
Type | Name | Description |
---|---|---|
ComputePipelineDescription | description | The compute pipeline state description. |
Returns
Type | Description |
---|---|
ComputePipelineState | The new pipeline state. |
Overrides
CreateFrameBufferInternal(FrameBufferAttachment?, FrameBufferAttachment[], bool)
Creates a FrameBuffer instance.
Declaration
protected override FrameBuffer CreateFrameBufferInternal(FrameBufferAttachment? depthTarget, FrameBufferAttachment[] colorTarget, bool disposeAttachments)
Parameters
Type | Name | Description |
---|---|---|
FrameBufferAttachment? | depthTarget | The depth FrameBufferAttachment which must have been created with the DepthStencil flag. |
FrameBufferAttachment[] | colorTarget | |
bool | disposeAttachments | When this framebuffer is disposed, disposes the attachment textures too. |
Returns
Type | Description |
---|---|
FrameBuffer | The new framebuffer. |
Overrides
CreateGraphicsPipelineInternal(ref GraphicsPipelineDescription)
Creates a GraphicsPipelineState instance.
Declaration
protected override GraphicsPipelineState CreateGraphicsPipelineInternal(ref GraphicsPipelineDescription description)
Parameters
Type | Name | Description |
---|---|---|
GraphicsPipelineDescription | description | The graphics pipeline state description. |
Returns
Type | Description |
---|---|
GraphicsPipelineState | The new pipeline state. |
Overrides
CreateQueryHeap(ref QueryHeapDescription)
Creates a QueryHeap instance.
Declaration
public override QueryHeap CreateQueryHeap(ref QueryHeapDescription description)
Parameters
Type | Name | Description |
---|---|---|
QueryHeapDescription | description | The QueryHeap description. |
Returns
Type | Description |
---|---|
QueryHeap | The new QueryHeap. |
Overrides
CreateRaytracingPipelineInternal(ref RaytracingPipelineDescription)
Creates a RaytracingPipelineState instance.
Declaration
protected override RaytracingPipelineState CreateRaytracingPipelineInternal(ref RaytracingPipelineDescription description)
Parameters
Type | Name | Description |
---|---|---|
RaytracingPipelineDescription | description | The raytracing pipeline state description. |
Returns
Type | Description |
---|---|
RaytracingPipelineState | The new pipeline state. |
Overrides
CreateResourceLayoutInternal(ref ResourceLayoutDescription)
Creates a new ResourceLayout.
Declaration
protected override ResourceLayout CreateResourceLayoutInternal(ref ResourceLayoutDescription description)
Parameters
Type | Name | Description |
---|---|---|
ResourceLayoutDescription | description | The description of all elements in this new ResourceLayout. |
Returns
Type | Description |
---|---|
ResourceLayout | A new ResourceLayout object. |
Overrides
CreateResourceSetInternal(ref ResourceSetDescription)
Creates a new ResourceSet.
Declaration
protected override ResourceSet CreateResourceSetInternal(ref ResourceSetDescription description)
Parameters
Type | Name | Description |
---|---|---|
ResourceSetDescription | description | The description for all elements in this new ResourceSet. |
Returns
Type | Description |
---|---|
ResourceSet | A new ResourceSet object. |
Overrides
CreateSamplerStateInternal(ref SamplerStateDescription)
Creates a SamplerState instance.
Declaration
protected override SamplerState CreateSamplerStateInternal(ref SamplerStateDescription description)
Parameters
Type | Name | Description |
---|---|---|
SamplerStateDescription | description | The sampler state description. |
Returns
Type | Description |
---|---|
SamplerState | The new sampler state. |
Overrides
CreateShaderInternal(ref ShaderDescription)
Creates a Shader instance.
Declaration
protected override Shader CreateShaderInternal(ref ShaderDescription description)
Parameters
Type | Name | Description |
---|---|---|
ShaderDescription | description | The shader description. |
Returns
Type | Description |
---|---|
Shader | The new shader. |
Overrides
CreateTextureInternal(DataBox[], ref TextureDescription, ref SamplerStateDescription)
Creates a Texture instance.
Declaration
protected override Texture CreateTextureInternal(DataBox[] data, ref TextureDescription description, ref SamplerStateDescription samplerState)
Parameters
Type | Name | Description |
---|---|---|
DataBox[] | data | The texture data. |
TextureDescription | description | The texture description. |
SamplerStateDescription | samplerState | The sampler state description of the SamplerStateDescription struct. |
Returns
Type | Description |
---|---|
Texture | The new texture. |
Overrides
GetTextureFromNativePointerInternal(nint, ref TextureDescription)
Gets a Texture instance from an existing texture using the specified native pointer.
Declaration
protected override Texture GetTextureFromNativePointerInternal(nint texturePointer, ref TextureDescription textureDescription)
Parameters
Type | Name | Description |
---|---|---|
nint | texturePointer | The pointer to the texture. |
TextureDescription | textureDescription | The description of the already created texture. |
Returns
Type | Description |
---|---|
Texture | The texture instance. |