Version: 5.4 beta (switch to 5.3)
LanguageEnglish
  • C#
  • JS

Script language

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

ComputeBuffer.CopyCount

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function CopyCount(src: ComputeBuffer, dst: ComputeBuffer, dstOffset: int): void;
public static void CopyCount(ComputeBuffer src, ComputeBuffer dst, int dstOffset);

Parameters

src Append/consume buffer to copy the counter from.
dst A buffer to copy the counter to.
dstOffset Target byte offset in dst.

Description

Copy counter value of append/consume buffer into another buffer.

Append/consume buffers keep track of the number of elements in them with a special counter variable. CopyCount takes an append/consume buffer as src, and copies its counter value into dst buffer at given byte offset.

This is most commonly used in conjunction with Graphics.DrawProceduralIndirect, to render arbitrary number of primitives without reading their count back to the CPU.

Note: On D3D11 there is a restriction on the dst buffer - it must have been created with a ComputeBufferType of ComputeBufferType.Raw or ComputeBufferType.IndirectArguments. On other platforms dst can be any type.