2008-05-23 Emmanuele Bassi <ebassi@openedhand.com>
Bug #912 - Invalid use of int* as parameter for glGetIntegerv * clutter/cogl/gl/cogl.c (_cogl_features_init): Use GLint instead of int. (#912, Tommi Komulainen)
This commit is contained in:
parent
5cc8687e7e
commit
4ef8d3bb5f
@ -1,3 +1,10 @@
|
||||
2008-05-23 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
Bug #912 - Invalid use of int* as parameter for glGetIntegerv
|
||||
|
||||
* clutter/cogl/gl/cogl.c (_cogl_features_init): Use GLint
|
||||
instead of int. (#912, Tommi Komulainen)
|
||||
|
||||
2008-05-23 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
Bug #928 - Reparenting a child that itself is a container
|
||||
|
@ -559,8 +559,8 @@ _cogl_features_init ()
|
||||
|
||||
ClutterFeatureFlags flags = 0;
|
||||
const gchar *gl_extensions;
|
||||
int max_clip_planes = 0;
|
||||
int stencil_bits = 0;
|
||||
GLint max_clip_planes = 0;
|
||||
GLint stencil_bits = 0;
|
||||
|
||||
flags = COGL_FEATURE_TEXTURE_READ_PIXELS;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user