Gorgon
Show / Hide Table of Contents

Class GorgonComputeShaderResources

A grouping of resource states for a compute shader.

Inheritance
object
GorgonComputeShaderResources
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
Namespace: Gorgon.Graphics.Core
Assembly: Gorgon.Graphics.Core.dll
Syntax
public sealed class GorgonComputeShaderResources

Properties

| Edit this page View Source

ConstantBuffers

Property to return the constant buffers for the shader.

Declaration
public IGorgonReadOnlyArray<GorgonConstantBufferView> ConstantBuffers { get; }
Property Value
Type Description
IGorgonReadOnlyArray<GorgonConstantBufferView>
| Edit this page View Source

ReadWriteViews

Property to return the list of read/write (unordered access) views for the compute shader.

Declaration
public IGorgonReadOnlyArray<GorgonReadWriteViewBinding> ReadWriteViews { get; }
Property Value
Type Description
IGorgonReadOnlyArray<GorgonReadWriteViewBinding>
| Edit this page View Source

Samplers

Property to return the samplers for the shader.

Declaration
public IGorgonReadOnlyArray<GorgonSamplerState> Samplers { get; }
Property Value
Type Description
IGorgonReadOnlyArray<GorgonSamplerState>
| Edit this page View Source

ShaderResources

Property to return the list of shader resources for the shader.

Declaration
public IGorgonReadOnlyArray<GorgonShaderResourceView> ShaderResources { get; }
Property Value
Type Description
IGorgonReadOnlyArray<GorgonShaderResourceView>

Extension Methods

GorgonDebugExtensions.ValidateObject<T>(T, string)
GorgonNullExtensions.AsNullable<T>(object)
GorgonNullExtensions.IfNull<T>(object, T)
GorgonNullExtensions.IsNull(object)
  • Edit this page
  • View Source
In this article
Back to top Copyright 2023 - Licensed under the MIT license by Michael Winsor (Tape_Worm).
Send comments on this topic to the author