コード例 #1
0
ファイル: GL.cs プロジェクト: msruzy/digimon-linkz-client
        public static Matrix4x4 GetGPUProjectionMatrix(Matrix4x4 proj, bool renderIntoTexture)
        {
            Matrix4x4 result;

            GL.GetGPUProjectionMatrix_Injected(ref proj, renderIntoTexture, out result);
            return(result);
        }