Version: 2022.3
언어: 한국어

Target

enumeration

매뉴얼로 전환

설명

The intended targets for GraphicsBuffer.

Provide the intended targets (target) when creating a GraphicsBuffer. For example, pass GraphicsBuffer.Target.Index for a buffer to be usable as a geometry index buffer.

Different platforms and devices might or might not support different targets. Any target values different from Vertex, Index or Constant require the compute shader support (see SystemInfo.supportsComputeShaders).

You can combine values in this enum. For example, GraphicsBuffer.Target.Index | GraphicsBuffer.Target.Raw creates a buffer that can be used both as an index buffer in a Graphics.DrawProcedural call, and as a raw byte address buffer in a compute shader.

DirectX 11 does not allow Index or Vertex buffers to also be Structured. For compute shader mesh data access with DirectX 11 compatibility, use Raw.

See Also: GraphicsBuffer class, GraphicsBuffer constructor, Mesh.vertexBufferTarget, Mesh.indexBufferTarget.

변수

VertexGraphicsBuffer can be used as a vertex buffer.
IndexGraphicsBuffer can be used as an index buffer.
CopySourceGraphicsBuffer can be used as a source for CopyBuffer.
CopyDestinationGraphicsBuffer can be used as a destination for CopyBuffer.
StructuredGraphicsBuffer can be used as a structured buffer.
RawGraphicsBuffer can be used as a raw byte-address buffer.
AppendGraphicsBuffer can be used as an append-consume buffer.
CounterGraphicsBuffer with an internal counter.
IndirectArgumentsGraphicsBuffer can be used as an indirect argument buffer for indirect draws and dispatches.
ConstantGraphicsBuffer can be used as a constant buffer (uniform buffer).