mirror of
https://github.com/brl/mutter.git
synced 2025-07-27 03:58:32 +00:00
cogl/matrix: Remove cogl_matrix_ortho
It's deprecated and unused, and will only complicate transitioning to Graphene even further.
This commit is contained in:
@@ -529,19 +529,6 @@ _cogl_matrix_orthographic (CoglMatrix *matrix,
|
|||||||
matrix_multiply_array_with_flags (matrix, m);
|
matrix_multiply_array_with_flags (matrix, m);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
cogl_matrix_ortho (CoglMatrix *matrix,
|
|
||||||
float left,
|
|
||||||
float right,
|
|
||||||
float bottom,
|
|
||||||
float top,
|
|
||||||
float near,
|
|
||||||
float far)
|
|
||||||
{
|
|
||||||
_cogl_matrix_orthographic (matrix, left, top, right, bottom, near, far);
|
|
||||||
_COGL_MATRIX_DEBUG_PRINT (matrix);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
cogl_matrix_orthographic (CoglMatrix *matrix,
|
cogl_matrix_orthographic (CoglMatrix *matrix,
|
||||||
float x_1,
|
float x_1,
|
||||||
|
@@ -379,34 +379,6 @@ cogl_matrix_orthographic (CoglMatrix *matrix,
|
|||||||
float near,
|
float near,
|
||||||
float far);
|
float far);
|
||||||
|
|
||||||
/**
|
|
||||||
* cogl_matrix_ortho:
|
|
||||||
* @matrix: A 4x4 transformation matrix
|
|
||||||
* @left: The coordinate for the left clipping plane
|
|
||||||
* @right: The coordinate for the right clipping plane
|
|
||||||
* @bottom: The coordinate for the bottom clipping plane
|
|
||||||
* @top: The coordinate for the top clipping plane
|
|
||||||
* @near: The <emphasis>distance</emphasis> to the near clipping
|
|
||||||
* plane (will be <emphasis>negative</emphasis> if the plane is
|
|
||||||
* behind the viewer)
|
|
||||||
* @far: The <emphasis>distance</emphasis> to the far clipping
|
|
||||||
* plane (will be <emphasis>negative</emphasis> if the plane is
|
|
||||||
* behind the viewer)
|
|
||||||
*
|
|
||||||
* Multiplies @matrix by a parallel projection matrix.
|
|
||||||
*
|
|
||||||
* Deprecated: 1.10: Use cogl_matrix_orthographic()
|
|
||||||
*/
|
|
||||||
COGL_DEPRECATED_FOR (cogl_matrix_orthographic)
|
|
||||||
void
|
|
||||||
cogl_matrix_ortho (CoglMatrix *matrix,
|
|
||||||
float left,
|
|
||||||
float right,
|
|
||||||
float bottom,
|
|
||||||
float top,
|
|
||||||
float near,
|
|
||||||
float far);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* cogl_matrix_view_2d_in_frustum:
|
* cogl_matrix_view_2d_in_frustum:
|
||||||
* @matrix: A 4x4 transformation matrix
|
* @matrix: A 4x4 transformation matrix
|
||||||
|
@@ -486,9 +486,6 @@ cogl_matrix_init_from_quaternion
|
|||||||
cogl_matrix_init_identity
|
cogl_matrix_init_identity
|
||||||
cogl_matrix_look_at
|
cogl_matrix_look_at
|
||||||
cogl_matrix_multiply
|
cogl_matrix_multiply
|
||||||
#ifndef COGL_DISABLE_DEPRECATED
|
|
||||||
cogl_matrix_ortho
|
|
||||||
#endif
|
|
||||||
cogl_matrix_orthographic
|
cogl_matrix_orthographic
|
||||||
cogl_matrix_perspective
|
cogl_matrix_perspective
|
||||||
cogl_matrix_project_points
|
cogl_matrix_project_points
|
||||||
|
Reference in New Issue
Block a user