ComputeShader

class in UnityEngine

Switch to Manual

Description

Ассет вычисляемого шейдера.

Compute shaders are programs that run on the GPU outside of the normal rendering pipeline. They correspond to compute shader assets in the project (.compute files).

Compute shader support can be queried runtime using SystemInfo.supportsComputeShaders. See Compute Shaders overview for more info about platforms supporting compute shaders.

See Also: ComputeBuffer class, Compute Shaders overview.

Variables

shaderKeywordsArray of locally enabled shader keywords.

Public Functions

DisableKeywordDisables a locally set Shader keyword.
DispatchВыполнить вычисляемый шейдер.
DispatchIndirectВыполнить вычисляемый шейдер.
EnableKeywordSets a Shader keyword locally for this Compute Shader.
FindKernelНаходит индекс ядра у ComputeShader.
GetKernelThreadGroupSizesGet kernel thread group sizes.
HasKernelChecks whether a shader contains a given kernel.
IsKeywordEnabledSpecifies whether the Shader keyword is enabled in this Compute Shader.
SetBoolSet a bool parameter.
SetBufferЭта функция может установить либо вход либо выход вычислительного буфера.
SetConstantBufferSets a ComputeBuffer or a GraphicsBuffer as a named constant buffer for the ComputeShader.
SetFloatУстанавливает параметр типа Float.
SetFloatsУстанавливает несколько последовательных параметров типа float за один раз.
SetIntУстанавливает целочисленный параметр.
SetIntsУстанавливает несколько последовательных целочисленных параметров за один раз.
SetMatrixSet a Matrix parameter.
SetMatrixArraySet a Matrix array parameter.
SetTextureУстанавливает параметр texture.
SetTextureFromGlobalУстанавливает параметр texture.
SetVectorУстанавливает параметр vector.
SetVectorArraySet a vector array parameter.