Version: 2021.3
public static void CopyBuffer (GraphicsBuffer source, GraphicsBuffer dest);

参数

source The source buffer.
dest The destination buffer.

描述

Copies the contents of one GraphicsBuffer into another.

The GPU copies the buffer contents efficiently.

Total buffer sizes (i.e. count multiplied by stride) must match between source and destination buffers. The source buffer must have a GraphicsBuffer.Target.CopySource target flag, and the destination buffer must have a GraphicsBuffer.Target.CopyDestination target flag.

using UnityEngine;

public class ExampleScript : MonoBehaviour { void Start() { // create a source index buffer and set data for it var src = new GraphicsBuffer( GraphicsBuffer.Target.Index | GraphicsBuffer.Target.CopySource, 3, 2); src.SetData(new ushort[]{1, 10, 100}); // create a destination index buffer and copy source into it var dst = new GraphicsBuffer( GraphicsBuffer.Target.Index | GraphicsBuffer.Target.CopyDestination, 3, 2); Graphics.CopyBuffer(src, dst);

// check the copied data var got = new ushort[3]; dst.GetData(got); Debug.Log($"copied data: {got[0]}, {got[1]}, {got[2]}");

// release the buffers src.Release(); dst.Release(); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961