bool 如果刷新成功,则返回 True。
刷新设备上下文。
开始执行已排队的操作。在某些平台上,底层实现或驱动程序会自动刷新,而在其他平台上,则需要用户调用 Flush。Flush 方法会立即返回。
IDeviceContext ctx = new RadeonRaysContext(); ctx.Initialize(); const int sizeInBytes = 4; var bufferID = ctx.CreateBuffer(sizeInBytes); using var results = new NativeArray<float>(1, Allocator.Temp); var readEvent = ctx.CreateEvent(); ctx.ReadBuffer(bufferID.Slice<byte>(), results.Reinterpret<byte>(4), readEvent); ctx.Flush(); ctx.DestroyEvent(readEvent); ctx.DestroyBuffer(bufferID); ctx.Dispose();
如何使用 Flush。