Axiom.RenderSystems.OpenGLES.GLESRenderSystem.ConvertProjectionMatrix C# (CSharp) Méthode

ConvertProjectionMatrix() public méthode

public ConvertProjectionMatrix ( Matrix4 matrix, bool forGpuProgram ) : Matrix4
matrix Axiom.Math.Matrix4
forGpuProgram bool
Résultat Axiom.Math.Matrix4
		public override Matrix4 ConvertProjectionMatrix( Matrix4 matrix, bool forGpuProgram )
		{
			// no any conversion request for OpenGL
			Matrix4 dest = matrix;
			return dest;
		}
GLESRenderSystem