INTERNAL_CALL_GetGPUProjectionMatrix() private méthode

private INTERNAL_CALL_GetGPUProjectionMatrix ( Matrix4x4 &proj, bool renderIntoTexture, Matrix4x4 &value ) : void
proj Matrix4x4
renderIntoTexture bool
value Matrix4x4
Résultat void
Exemple #1
0
        public static Matrix4x4 GetGPUProjectionMatrix(Matrix4x4 proj, bool renderIntoTexture)
        {
            Matrix4x4 result;

            GL.INTERNAL_CALL_GetGPUProjectionMatrix(ref proj, renderIntoTexture, out result);
            return(result);
        }
Exemple #2
0
 public static Matrix4x4 GetGPUProjectionMatrix(Matrix4x4 proj, bool renderIntoTexture)
 {
     return(GL.INTERNAL_CALL_GetGPUProjectionMatrix(ref proj, renderIntoTexture));
 }