Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

ComputeBuffer Constructor

public ComputeBuffer(int count, int stride);
public ComputeBuffer(int count, int stride, ComputeBufferType type);

Parameters

countNumber of elements in the buffer.
strideSize of one element in the buffer. Has to match size of buffer type in the shader. See Compute Shaders for cross-platform compatibility information.
typeType of the buffer, default is ComputeBufferType.Default (structured buffer).

Description

Create a Compute Buffer.

Use Release to release the buffer when no longer needed.

See Also: SystemInfo.supportsComputeShaders, ComputeShader class, Shader.SetGlobalBuffer, Material.SetBuffer, Compute Shaders.

对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答