Le 12 oct. 2015 20:32, "Amitesh Singh" <amitesh...@samsung.com> a écrit : > > ami pushed a commit to branch master. > > http://git.enlightenment.org/core/efl.git/commit/?id=16819d37d24bdfba2b6b9842d4198c1764382231 > > commit 16819d37d24bdfba2b6b9842d4198c1764382231 > Author: Amitesh Singh <amitesh...@samsung.com> > Date: Tue Oct 13 09:01:26 2015 +0530 > > evas: fix compilation error > > This is introduced in 5c02935a866a5c14 > --- > src/modules/evas/engines/gl_x11/evas_engine.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/src/modules/evas/engines/gl_x11/evas_engine.c b/src/modules/evas/engines/gl_x11/evas_engine.c > index 883b2db..3d4dd12 100644 > --- a/src/modules/evas/engines/gl_x11/evas_engine.c > +++ b/src/modules/evas/engines/gl_x11/evas_engine.c > @@ -2181,7 +2181,7 @@ _native_yinvert_cb(void *data, void *image) > #else > glXGetFBConfigAttrib(eng_get_ob(re)->disp, n->config, > GLX_Y_INVERTED_EXT, &val); > - if (val == TRUE) yinvert = 1; > + if (val == 1) yinvert = 1; > #endif > } > else if (n->ns.type == EVAS_NATIVE_SURFACE_OPENGL) > @@ -2539,7 +2539,7 @@ eng_image_native_set(void *data, void *image, void *native) > } > glXGetFBConfigAttrib(eng_get_ob(re)->disp, configs[j], > GLX_Y_INVERTED_EXT, &val); > - if (val == TRUE) yinvert = 1; > + if (val == 1) yinvert = 1;
That should be defined, it's part of the definition of that api. How isn't that the case ? > glXGetFBConfigAttrib(eng_get_ob(re)->disp, configs[j], > GLX_BIND_TO_TEXTURE_TARGETS_EXT, > &val); > > -- > > > ------------------------------------------------------------------------------ _______________________________________________ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel