clutter_actor_project_point/vertices
This commit is contained in:
18
gles/cogl.c
18
gles/cogl.c
@@ -533,3 +533,21 @@ cogl_get_features ()
|
||||
/* Suck */
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
cogl_get_modelview_matrix (ClutterFixed m[16])
|
||||
{
|
||||
glGetFixedv(GL_MODELVIEW_MATRIX, &m[0]);
|
||||
}
|
||||
|
||||
void
|
||||
cogl_get_projection_matrix (ClutterFixed m[16])
|
||||
{
|
||||
glGetFixedv(GL_PROJECTION_MATRIX, &m[0]);
|
||||
}
|
||||
|
||||
void
|
||||
cogl_get_viewport (ClutterFixed v[4])
|
||||
{
|
||||
glGetFixedv(GL_VIEWPORT, &v[0]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user