INTERNAL_CALL_GetGPUProjectionMatrix() private method

private INTERNAL_CALL_GetGPUProjectionMatrix ( Matrix4x4 &proj, bool renderIntoTexture, Matrix4x4 &value ) : void
proj Matrix4x4
renderIntoTexture bool
value Matrix4x4
return void
コード例 #1
0
ファイル: GL.cs プロジェクト: lsx6244413/UnityDecomplie
        public static Matrix4x4 GetGPUProjectionMatrix(Matrix4x4 proj, bool renderIntoTexture)
        {
            Matrix4x4 result;

            GL.INTERNAL_CALL_GetGPUProjectionMatrix(ref proj, renderIntoTexture, out result);
            return(result);
        }
コード例 #2
0
ファイル: GL.cs プロジェクト: zhkuang/UnityDecompiled
 public static Matrix4x4 GetGPUProjectionMatrix(Matrix4x4 proj, bool renderIntoTexture)
 {
     return(GL.INTERNAL_CALL_GetGPUProjectionMatrix(ref proj, renderIntoTexture));
 }