Version: 2022.3
LanguageEnglish
  • C#
Method group is Obsolete

CommandBuffer.WaitOnGPUFence

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

Submission failed

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

Close

Cancel

Obsolete CommandBuffer.WaitOnGPUFence has been deprecated. Use WaitOnGraphicsFence instead.
Upgrade to WaitOnAsyncGraphicsFence

Declaration

public void WaitOnGPUFence(GPUFence fence, Rendering.SynchronisationStage stage);

Parameters

fence The GPUFence that the GPU will be instructed to wait upon.
stage On some platforms there is a significant gap between the vertex processing completing and the pixel processing completing for a given draw call. This parameter allows for requested wait to be before the next items vertex or pixel processing begins. Some platforms can not differentiate between the start of vertex and pixel processing, these platforms will wait before the next items vertex processing. If a compute shader dispatch is the next item to be submitted then this parameter is ignored.

Description

This functionality is deprecated, and should no longer be used. Please use CommandBuffer.WaitOnAsyncGraphicsFence.