UnityEngine.RenderBufferHelper.SetLoadAction C# (CSharp) Method

SetLoadAction() private method

private SetLoadAction ( RenderBuffer &b, int a ) : void
b RenderBuffer
a int
return void
        internal static extern void SetLoadAction(out RenderBuffer b, int a);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 internal void SetLoadAction(RenderBufferLoadAction action)
 {
     RenderBufferHelper.SetLoadAction(out this, (int)action);
 }