UnityEngine.RenderBufferHelper.SetStoreAction C# (CSharp) Method

SetStoreAction() private method

private SetStoreAction ( RenderBuffer &b, int a ) : void
b RenderBuffer
a int
return void
        internal static extern void SetStoreAction(out RenderBuffer b, int a);
        internal static IntPtr GetNativeRenderBufferPtr(IntPtr rb)

Usage Example

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