UnityEngine.ComputeShader.INTERNAL_CALL_SetVector C# (CSharp) Method

INTERNAL_CALL_SetVector() private method

private INTERNAL_CALL_SetVector ( ComputeShader self, int nameID, Vector4 &val ) : void
self ComputeShader
nameID int
val Vector4
return void
        private static extern void INTERNAL_CALL_SetVector(ComputeShader self, int nameID, ref Vector4 val);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 public void SetVector(string name, Vector4 val)
 {
     ComputeShader.INTERNAL_CALL_SetVector(this, name, ref val);
 }
All Usage Examples Of UnityEngine.ComputeShader::INTERNAL_CALL_SetVector