Re: [E-devel] How to enable GLES?
On Tue, 30 Aug 2011 15:25:34 +0800 "Chen, Zhenqiang" said: > > also.. evas will auto enable opengl or opengl-es2 if it finds suitable > > opengl libraries and headers. check configure.log to see what it found or > > didnt find. it's all automatic so no need for --enable options at all for > > evas for pretty much anything. > > For ./configure --prefix=/usr, the result is > Engines: > OpenGL X11.: yes (Xlib: yes) (XCB: no) (GLES: no) (SGX: no) (s3c6410: > no) > > >From config.log, it does not check ./GLES2/gl2.h etc. well it does check... IF it can't find desktop gl. default is to prefer desktop gl (gl/glx) over gles2/egl. > ./configure --prefix=/usr --enable-gl-flavor-gles --enable-gles-variety-sgx > Engines: > OpenGL X11..: yes (Xlib: yes) (XCB: no) (GLES: no) (SGX: yes) (s3c6410: > no) > > It checks ./GLES2/gl2.h etc. And link with libGLESv2.so. > > But why GLES is always no? is the gl engine installed? (the module) does the gl engine header get installed BEFORe u compile ecore - ecore needs this header to build support for the evas gl engine (every engine needs this). if ecore-evas has no support then u wont see it available in the options. > Thanks! > -Zhenqiang > > -- > Special Offer -- Download ArcSight Logger for FREE! > Finally, a world-class log management solution at an even better > price-free! And you'll get a free "Love Thy Logs" t-shirt when you > download Logger. Secure your free ArcSight Logger TODAY! > http://p.sf.net/sfu/arcsisghtdev2dev > ___ > enlightenment-devel mailing list > enlightenment-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > -- - Codito, ergo sum - "I code, therefore I am" -- The Rasterman (Carsten Haitzler)ras...@rasterman.com -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even better price-free! And you'll get a free "Love Thy Logs" t-shirt when you download Logger. Secure your free ArcSight Logger TODAY! http://p.sf.net/sfu/arcsisghtdev2dev ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] How to enable GLES?
> also.. evas will auto enable opengl or opengl-es2 if it finds suitable opengl > libraries and headers. check configure.log to see what it found or didnt find. > it's all automatic so no need for --enable options at all for evas for pretty > much anything. For ./configure --prefix=/usr, the result is Engines: OpenGL X11.: yes (Xlib: yes) (XCB: no) (GLES: no) (SGX: no) (s3c6410: no) >From config.log, it does not check ./GLES2/gl2.h etc. ./configure --prefix=/usr --enable-gl-flavor-gles --enable-gles-variety-sgx Engines: OpenGL X11..: yes (Xlib: yes) (XCB: no) (GLES: no) (SGX: yes) (s3c6410: no) It checks ./GLES2/gl2.h etc. And link with libGLESv2.so. But why GLES is always no? Thanks! -Zhenqiang -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even better price-free! And you'll get a free "Love Thy Logs" t-shirt when you download Logger. Secure your free ArcSight Logger TODAY! http://p.sf.net/sfu/arcsisghtdev2dev ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] How to enable GLES?
On Mon, 29 Aug 2011 16:30:52 +0800 "Chen, Zhenqiang" said: oh god dont try xcb + opengl(es) currently. just stick to normal xlib (x11) stuff. gles and glx create a nice set of problems in that they require abi-wise an xlib display connection. also.. evas will auto enable opengl or opengl-es2 if it finds suitable opengl libraries and headers. check configure.log to see what it found or didnt find. it's all automatic so no need for --enable options at all for evas for pretty much anything. > Hi All, > > I try to configure evas to enable GLES. But it seams not work. > > ./configure --prefix=/usr --enable-gl-xcb --enable-gl-flavor-gles > --enable-gles-variety-sgx > > elementary_test reports: CRI<18771>:elementary elm_win.c:1436 elm_win_add() > OpenGL engine creation failed. Trying software X11 > > How to enable GLES? > > Thanks! > -Zhenqiang > > -- > EMC VNX: the world's simplest storage, starting under $10K > The only unified storage solution that offers unified management > Up to 160% more powerful than alternatives and 25% more efficient. > Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev > ___ > enlightenment-devel mailing list > enlightenment-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > -- - Codito, ergo sum - "I code, therefore I am" -- The Rasterman (Carsten Haitzler)ras...@rasterman.com -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even better price-free! And you'll get a free "Love Thy Logs" t-shirt when you download Logger. Secure your free ArcSight Logger TODAY! http://p.sf.net/sfu/arcsisghtdev2dev ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] How to enable GLES?
On 08/29/2011 02:26 PM, Boris Faure wrote: > On Mon, Aug 29, 2011 at 10:30, Chen, Zhenqiang > wrote: >> Hi All, >> >> I try to configure evas to enable GLES. But it seams not work. >> >> ./configure --prefix=/usr --enable-gl-xcb --enable-gl-flavor-gles >> --enable-gles-variety-sgx > > AFAIK, gl-xcb is currently not working. Christopher Michael > (devilhorns) should be working on it in a near future. That is correct. Currently '--enable-gl-xcb' does nothing...don't use it. dh -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even better price-free! And you'll get a free "Love Thy Logs" t-shirt when you download Logger. Secure your free ArcSight Logger TODAY! http://p.sf.net/sfu/arcsisghtdev2dev ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] How to enable GLES?
On Mon, Aug 29, 2011 at 10:30, Chen, Zhenqiang wrote: > Hi All, > > I try to configure evas to enable GLES. But it seams not work. > > ./configure --prefix=/usr --enable-gl-xcb --enable-gl-flavor-gles > --enable-gles-variety-sgx AFAIK, gl-xcb is currently not working. Christopher Michael (devilhorns) should be working on it in a near future. -- Boris Faure -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even better price-free! And you'll get a free "Love Thy Logs" t-shirt when you download Logger. Secure your free ArcSight Logger TODAY! http://p.sf.net/sfu/arcsight-sdnews ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
[E-devel] How to enable GLES?
Hi All, I try to configure evas to enable GLES. But it seams not work. ./configure --prefix=/usr --enable-gl-xcb --enable-gl-flavor-gles --enable-gles-variety-sgx elementary_test reports: CRI<18771>:elementary elm_win.c:1436 elm_win_add() OpenGL engine creation failed. Trying software X11 How to enable GLES? Thanks! -Zhenqiang -- EMC VNX: the world's simplest storage, starting under $10K The only unified storage solution that offers unified management Up to 160% more powerful than alternatives and 25% more efficient. Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel