mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 08:30:42 -05:00
* clutter/cogl/gles/cogl-gles2-wrapper.c (cogl_wrap_glGetFixedv):
Filled in the wrapper for glGetFixedv
This commit is contained in:
parent
29f7cbdfb7
commit
1502d0690c
@ -1,3 +1,8 @@
|
|||||||
|
2008-05-28 Neil Roberts <neil@o-hand.com>
|
||||||
|
|
||||||
|
* clutter/cogl/gles/cogl-gles2-wrapper.c (cogl_wrap_glGetFixedv):
|
||||||
|
Filled in the wrapper for glGetFixedv
|
||||||
|
|
||||||
2008-05-28 Neil Roberts <neil@o-hand.com>
|
2008-05-28 Neil Roberts <neil@o-hand.com>
|
||||||
|
|
||||||
* clutter/cogl/gles/cogl-texture.c: Use the wrapper for
|
* clutter/cogl/gles/cogl-texture.c: Use the wrapper for
|
||||||
|
@ -613,10 +613,42 @@ cogl_wrap_glClipPlanex (GLenum plane, GLfixed *equation)
|
|||||||
/* FIXME */
|
/* FIXME */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
cogl_gles2_float_array_to_fixed (int size, const GLfloat *floats,
|
||||||
|
GLfixed *fixeds)
|
||||||
|
{
|
||||||
|
while (size-- > 0)
|
||||||
|
*(fixeds++) = CLUTTER_FLOAT_TO_FIXED (*(floats++));
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
cogl_wrap_glGetFixedv (GLenum pname, GLfixed *params)
|
cogl_wrap_glGetFixedv (GLenum pname, GLfixed *params)
|
||||||
{
|
{
|
||||||
/* FIXME */
|
_COGL_GET_GLES2_WRAPPER (w, NO_RETVAL);
|
||||||
|
|
||||||
|
switch (pname)
|
||||||
|
{
|
||||||
|
case GL_MODELVIEW_MATRIX:
|
||||||
|
cogl_gles2_float_array_to_fixed (16, w->modelview_stack
|
||||||
|
+ w->modelview_stack_pos * 16,
|
||||||
|
params);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case GL_PROJECTION_MATRIX:
|
||||||
|
cogl_gles2_float_array_to_fixed (16, w->projection_stack
|
||||||
|
+ w->projection_stack_pos * 16,
|
||||||
|
params);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case GL_VIEWPORT:
|
||||||
|
{
|
||||||
|
GLfloat v[4];
|
||||||
|
|
||||||
|
glGetFloatv (GL_VIEWPORT, v);
|
||||||
|
cogl_gles2_float_array_to_fixed (4, v, params);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user