UnityEngine.GL.INTERNAL_CALL_Internal_Clear C# (CSharp) Method

INTERNAL_CALL_Internal_Clear() private method

private INTERNAL_CALL_Internal_Clear ( bool clearDepth, bool clearColor, UnityEngine &backgroundColor, float depth ) : void
clearDepth bool
clearColor bool
backgroundColor UnityEngine
depth float
return void
        private static extern void INTERNAL_CALL_Internal_Clear(bool clearDepth, bool clearColor, ref UnityEngine.Color backgroundColor, float depth);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
ファイル: GL.cs プロジェクト: lsx6244413/UnityDecomplie
 private static void Internal_Clear(bool clearDepth, bool clearColor, Color backgroundColor, float depth)
 {
     GL.INTERNAL_CALL_Internal_Clear(clearDepth, clearColor, ref backgroundColor, depth);
 }