Re: [E-devel] [PATCH] evas - use EGL_NOK_texture_from_pixmap to get yinvert value

2013-11-27 Thread The Rasterman
On Thu, 28 Nov 2013 09:57:17 +0400 Stanislav Vorobiov said: > Yes, it's for Tizen emulator. > > Latest emulator graphics stack implements texture_from_pixmap extension > efficiently, i.e. pixmap/window contents appears in texture and vice versa, > this happens without copyback. The operation is

Re: [E-devel] [PATCH v2] evas - use EGL_NOK_texture_from_pixmap to get yinvert value when possible

2013-11-27 Thread The Rasterman
On Thu, 28 Nov 2013 10:23:45 +0400 Stanislav Vorobiov said: > Instead of hardcoding yinvert=1 we should query for > EGL_NOK_texture_from_pixmap extension and if it's present > use EGL_Y_INVERTED_NOK value see my other email about the #define of EGL_Y_INVERTED_NOK :) > --- > src/modules/evas/en

Re: [E-devel] [PATCH] evas - use EGL_NOK_texture_from_pixmap to get yinvert value when possible

2013-11-27 Thread The Rasterman
On Thu, 28 Nov 2013 09:59:41 +0400 Stanislav Vorobiov said: > > the patch itself... why the #ifdef? when checking for extensions, we look > > for strings, and not defined macros. > I think #ifdef is needed because token EGL_Y_INVERTED_NOK might not be > declared in EGL headers and then compilatio

[EGIT] [core/efl] master 01/01: ecore_con: remove unecessary code.

2013-11-27 Thread Cedric BAIL
cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8e7921dffad5afa11480c758c8faab3ae986022b commit 8e7921dffad5afa11480c758c8faab3ae986022b Author: Cedric Bail Date: Thu Nov 28 16:36:21 2013 +0900 ecore_con: remove unecessary code. --- src/lib/e

[EGIT] [core/elementary] master 01/01: genlist - fix show item if list manipulation changes shown item position

2013-11-27 Thread Carsten Haitzler
raster pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=ca70a1a8f394bff2e226dd01c0f6336eaaa03810 commit ca70a1a8f394bff2e226dd01c0f6336eaaa03810 Author: Carsten Haitzler (Rasterman) Date: Thu Nov 28 16:36:55 2013 +0900 genlist - fix show item i

Re: [E-devel] [EGIT] [core/efl] master 02/02: ecore_con: fix unitialized use of buffer from strncpy.

2013-11-27 Thread Cedric BAIL
On Wed, Nov 27, 2013 at 11:58 PM, Gustavo Sverzut Barbieri wrote: > On Wed, Nov 27, 2013 at 3:31 AM, Cedric BAIL wrote: >> cedric pushed a commit to branch master. >> >> http://git.enlightenment.org/core/efl.git/commit/?id=1e70d703b329499982f484ce4f7a1227fb57919d >> >> commit 1e70d703b329499982f4

[EGIT] [core/efl] master 01/01: edje: correctly setup PATH and install Edje file as they are needed by examples.

2013-11-27 Thread Cedric BAIL
cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=5e3d934302e08e34c907673cd8280a32b753fbec commit 5e3d934302e08e34c907673cd8280a32b753fbec Author: Cedric Bail Date: Thu Nov 28 16:32:29 2013 +0900 edje: correctly setup PATH and install Edje file

[E-devel] [PATCH v2] evas - use EGL_NOK_texture_from_pixmap to get yinvert value when possible

2013-11-27 Thread Stanislav Vorobiov
Instead of hardcoding yinvert=1 we should query for EGL_NOK_texture_from_pixmap extension and if it's present use EGL_Y_INVERTED_NOK value --- src/modules/evas/engines/gl_x11/evas_engine.c | 18 +- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/modules/evas/eng

Re: [E-devel] [PATCH] evas - use EGL_NOK_texture_from_pixmap to get yinvert value when possible

2013-11-27 Thread Stanislav Vorobiov
> the patch itself... why the #ifdef? when checking for extensions, we look for > strings, and not defined macros. I think #ifdef is needed because token EGL_Y_INVERTED_NOK might not be declared in EGL headers and then compilation will fail > also extension checks are done in gl_extn_veto > () (w

Re: [E-devel] [PATCH] evas - use EGL_NOK_texture_from_pixmap to get yinvert value

2013-11-27 Thread Stanislav Vorobiov
Yes, it's for Tizen emulator. Latest emulator graphics stack implements texture_from_pixmap extension efficiently, i.e. pixmap/window contents appears in texture and vice versa, this happens without copyback. The operation is accelerated via host OpenGL and it's done via OpenGL framebuffer objec

[EGIT] [core/efl] master 01/01: evas/line - fix the line position set problem.

2013-11-27 Thread ChunEon Park
hermet pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=7acdb30f951566599b4c02f1c9dfd68f88abef3f commit 7acdb30f951566599b4c02f1c9dfd68f88abef3f Author: ChunEon Park Date: Thu Nov 28 14:03:05 2013 +0900 evas/line - fix the line position set problem.

Re: [E-devel] [PATCH] evas - use EGL_NOK_texture_from_pixmap to get yinvert value when possible

2013-11-27 Thread The Rasterman
On Wed, 27 Nov 2013 15:39:06 +0400 Stanislav Vorobiov said: the patch itself... why the #ifdef? when checking for extensions, we look for strings, and not defined macros. also extension checks are done in gl_extn_veto () (which lets us go assume an extension is there then veto it if its not and s

Re: [E-devel] [PATCH] evas - use EGL_NOK_texture_from_pixmap to get yinvert value

2013-11-27 Thread The Rasterman
On Wed, 27 Nov 2013 15:39:05 +0400 Stanislav Vorobiov said: i'm curious. when did you run into a pixmap NOT being inverted? > Hi everyone, > > This patch makes texture_from_pixmap evas feature more robust > when running with EGL. In case of GLX evas uses > GLX_Y_INVERTED_EXT to find out if text

Re: [E-devel] [EGIT] [core/enlightenment] master 01/01: revert threaded app menu filling code - not stable in efreet

2013-11-27 Thread The Rasterman
On Thu, 28 Nov 2013 06:11:57 +0100 Sebastian Dransfeld said: > > > Den Nov 28, 2013 kl. 1:00 skrev Carsten Haitzler (The Rasterman) > > : > > > > yesterday i spent some time on efreet and in the process of trying to > > nuke a simple thing (recursive symlinks) spotted a host of other bugs in th

Re: [E-devel] [EGIT] [core/enlightenment] master 01/01: revert threaded app menu filling code - not stable in efreet

2013-11-27 Thread The Rasterman
On Thu, 28 Nov 2013 06:14:29 +0100 Sebastian Dransfeld said: > > > Den Nov 28, 2013 kl. 1:00 skrev Carsten Haitzler (The Rasterman) > > : > > > > On Wed, 27 Nov 2013 12:20:36 -0500 Michael Blumenkrantz > > said: > > > >> good call here, I've been meaning to do this for a while. > >> > >> I c

Re: [E-devel] [EGIT] [core/enlightenment] master 01/02: oops - remove debug commit that snuck in!

2013-11-27 Thread The Rasterman
On Wed, 27 Nov 2013 22:35:35 -0200 Lucas De Marchi said: > >> > So in English there's no way to say "review your own commits before > >> > pushing?" ;-) > >> > >> yes there is. "review your commits" as opposed to "get your commits > >> reviewed". the second is a passive construction - the meaning

[EGIT] [tools/enventor] master 01/01: enventor - enable auto indentation

2013-11-27 Thread ChunEon Park
hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=cafa7052de22f8b0ae89161f68a64c5c5c7e90b4 commit cafa7052de22f8b0ae89161f68a64c5c5c7e90b4 Author: ChunEon Park Date: Thu Nov 28 12:58:34 2013 +0900 enventor - enable auto indentation --- sr

Re: [E-devel] [EGIT] [core/enlightenment] master 01/01: revert threaded app menu filling code - not stable in efreet

2013-11-27 Thread Sebastian Dransfeld
> Den Nov 28, 2013 kl. 1:00 skrev Carsten Haitzler (The Rasterman) > : > > On Wed, 27 Nov 2013 12:20:36 -0500 Michael Blumenkrantz > said: > >> good call here, I've been meaning to do this for a while. >> >> I created T585 so the issue isn't forgotten > > yeah. come back some time in the fut

Re: [E-devel] [EGIT] [core/enlightenment] master 01/01: revert threaded app menu filling code - not stable in efreet

2013-11-27 Thread Sebastian Dransfeld
> Den Nov 28, 2013 kl. 1:00 skrev Carsten Haitzler (The Rasterman) > : > > yesterday i spent some time on efreet and in the process of trying to > nuke a simple thing (recursive symlinks) spotted a host of other bugs in the > way the code worked (it would miss entire subtrees if added etc.) and

[EGIT] [bindings/python/python-efl] master 01/05: Elementary: Fix issues in examples, including segfault in config example

2013-11-27 Thread Kai Huuhko
kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=44ea5ef0867a63d005928fcdf414d75e70fe8b8f commit 44ea5ef0867a63d005928fcdf414d75e70fe8b8f Author: Kai Huuhko Date: Wed Nov 27 23:08:34 2013 +0200 Elementary: Fix issues in example

[EGIT] [bindings/python/python-efl] master 05/05: Elementary.entry: Fix documentation issues.

2013-11-27 Thread Kai Huuhko
kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=bd8f38667ec73338894a99b349414eabb53fa272 commit bd8f38667ec73338894a99b349414eabb53fa272 Author: Kai Huuhko Date: Thu Nov 28 03:12:33 2013 +0200 Elementary.entry: Fix documentati

[EGIT] [bindings/python/python-efl] master 04/05: Elementary.entry: Free cursor text before returning it to python space

2013-11-27 Thread Kai Huuhko
kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=f3ee18d032d47f358664e00090d5faaa351dd763 commit f3ee18d032d47f358664e00090d5faaa351dd763 Author: Kai Huuhko Date: Thu Nov 28 03:11:26 2013 +0200 Elementary.entry: Free cursor tex

[EGIT] [bindings/python/python-efl] master 02/05: Elementary: Change RuntimeError to a Warning in several non-critical cases.

2013-11-27 Thread Kai Huuhko
kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=dc0acd4919473b62b637f429b414e602ae6ae651 commit dc0acd4919473b62b637f429b414e602ae6ae651 Author: Kai Huuhko Date: Thu Nov 28 00:29:43 2013 +0200 Elementary: Change RuntimeError t

[EGIT] [bindings/python/python-efl] master 03/05: Update TODO

2013-11-27 Thread Kai Huuhko
kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=dd74de4cfe47ace3922defcdb8ea346a946fda97 commit dd74de4cfe47ace3922defcdb8ea346a946fda97 Author: Kai Huuhko Date: Thu Nov 28 01:51:05 2013 +0200 Update TODO --- TODO | 53 ++

Re: [E-devel] [EGIT] [core/enlightenment] master 01/02: oops - remove debug commit that snuck in!

2013-11-27 Thread Lucas De Marchi
On Wed, Nov 27, 2013 at 10:28 PM, Carsten Haitzler wrote: > On Thu, 28 Nov 2013 09:22:56 +0900 Carsten Haitzler (The Rasterman) > said: > >> On Wed, 27 Nov 2013 22:08:09 -0200 Lucas De Marchi >> said: >> >> > On Wed, Nov 27, 2013 at 9:50 PM, Carsten Haitzler >> > wrote: >> > > On Wed, 27 Nov 20

Re: [E-devel] [EGIT] [core/enlightenment] master 01/02: oops - remove debug commit that snuck in!

2013-11-27 Thread The Rasterman
On Thu, 28 Nov 2013 09:22:56 +0900 Carsten Haitzler (The Rasterman) said: > On Wed, 27 Nov 2013 22:08:09 -0200 Lucas De Marchi > said: > > > On Wed, Nov 27, 2013 at 9:50 PM, Carsten Haitzler > > wrote: > > > On Wed, 27 Nov 2013 12:33:35 -0200 Lucas De Marchi > > > said: > > > > > >> On Wed, N

Re: [E-devel] [EGIT] [core/enlightenment] master 01/02: oops - remove debug commit that snuck in!

2013-11-27 Thread The Rasterman
On Wed, 27 Nov 2013 22:08:09 -0200 Lucas De Marchi said: > On Wed, Nov 27, 2013 at 9:50 PM, Carsten Haitzler > wrote: > > On Wed, 27 Nov 2013 12:33:35 -0200 Lucas De Marchi > > said: > > > >> On Wed, Nov 27, 2013 at 11:57 AM, Carsten Haitzler > >> wrote: > >> > On Wed, 27 Nov 2013 11:51:28 -02

Re: [E-devel] [EGIT] [core/enlightenment] master 01/02: oops - remove debug commit that snuck in!

2013-11-27 Thread Lucas De Marchi
On Wed, Nov 27, 2013 at 9:50 PM, Carsten Haitzler wrote: > On Wed, 27 Nov 2013 12:33:35 -0200 Lucas De Marchi > said: > >> On Wed, Nov 27, 2013 at 11:57 AM, Carsten Haitzler >> wrote: >> > On Wed, 27 Nov 2013 11:51:28 -0200 Gustavo Sverzut Barbieri >> > said: >> > >> >> On Mon, Nov 25, 2013 at

Re: [E-devel] [EGIT] [core/enlightenment] master 01/02: oops - remove debug commit that snuck in!

2013-11-27 Thread The Rasterman
On Wed, 27 Nov 2013 12:33:35 -0200 Lucas De Marchi said: > On Wed, Nov 27, 2013 at 11:57 AM, Carsten Haitzler > wrote: > > On Wed, 27 Nov 2013 11:51:28 -0200 Gustavo Sverzut Barbieri > > said: > > > >> On Mon, Nov 25, 2013 at 10:16 PM, Carsten Haitzler > >> wrote: > >> > On Mon, 25 Nov 2013 17

Re: [E-devel] [EGIT] [core/enlightenment] master 01/01: revert threaded app menu filling code - not stable in efreet

2013-11-27 Thread The Rasterman
On Wed, 27 Nov 2013 12:20:36 -0500 Michael Blumenkrantz said: > good call here, I've been meaning to do this for a while. > > I created T585 so the issue isn't forgotten yeah. come back some time in the future (e19/e20) and try again - but maybe after making stand-alone test app that hammers t

Re: [E-devel] [EGIT] [core/efl] master 01/01: evas/cserve2: Update image loaders list

2013-11-27 Thread The Rasterman
On Wed, 27 Nov 2013 12:56:08 -0200 Gustavo Sverzut Barbieri said: yes. but we don't. > shouldn't we populate this list during runtime? > > On Wed, Nov 27, 2013 at 2:50 AM, Jean-Philippe Andre > wrote: > > jpeg pushed a commit to branch master. > > > > http://git.enlightenment.org/core/efl.git/

Re: [E-devel] E18 CFBugs #4

2013-11-27 Thread Sebastian Dransfeld
> Den Nov 27, 2013 kl. 20:15 skrev Michael Blumenkrantz > : > > On Thu, 28 Nov 2013 01:52:51 +1000 > David Seikel wrote: > >> Use "focus follows mouse", shade a window that is over other windows, >> switch desktops, switch back, note that hovering over where the shaded >> window would be if it

Re: [E-devel] E18 CFBugs #4

2013-11-27 Thread Michael Blumenkrantz
On Thu, 28 Nov 2013 01:52:51 +1000 David Seikel wrote: > Use "focus follows mouse", shade a window that is over other windows, > switch desktops, switch back, note that hovering over where the shaded > window would be if it was not shaded focuses that shaded window instead > of the window underne

[EGIT] [bindings/python/python-efl] master 01/01: Elm: Update main test to be more like C test and add more table examples

2013-11-27 Thread Kai Huuhko
kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=cfd74a40e94af35bb3aa63eef812e2fe5266234b commit cfd74a40e94af35bb3aa63eef812e2fe5266234b Author: Kai Huuhko Date: Wed Nov 27 21:08:45 2013 +0200 Elm: Update main test to be more

Re: [E-devel] [EGIT] [core/enlightenment] master 01/01: revert threaded app menu filling code - not stable in efreet

2013-11-27 Thread Michael Blumenkrantz
good call here, I've been meaning to do this for a while. I created T585 so the issue isn't forgotten On Wed, 27 Nov 2013 02:47:12 -0800 Carsten Haitzler wrote: > raster pushed a commit to branch master. > > http://git.enlightenment.org/core/enlightenment.git/commit/?id=bb8e4e830c5771a8088a94c

[EGIT] [bindings/python/python-efl] master 02/02: Elementary: Synchronize more code in genlist <-> gengrid

2013-11-27 Thread Kai Huuhko
kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=4dc1f2a412c61838f7b442f5d9dc0ceb10dc86ce commit 4dc1f2a412c61838f7b442f5d9dc0ceb10dc86ce Author: Kai Huuhko Date: Wed Nov 27 19:20:20 2013 +0200 Elementary: Synchronize more code

[EGIT] [bindings/python/python-efl] master 01/02: Documentation: Increase doctree depth to list elm modules in main page

2013-11-27 Thread Kai Huuhko
kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=204147aa3aad96f31ed5abe8676537191b17321d commit 204147aa3aad96f31ed5abe8676537191b17321d Author: Kai Huuhko Date: Wed Nov 27 19:16:32 2013 +0200 Documentation: Increase doctree d

[EGIT] [admin/devs] master 01/01: info updates

2013-11-27 Thread discomfitor
discomfitor pushed a commit to branch master. http://git.enlightenment.org/admin/devs.git/commit/?id=508e34b5d8b9b6bc2199b7a3d03b51c4efa5bb49 commit 508e34b5d8b9b6bc2199b7a3d03b51c4efa5bb49 Author: discomfitor Date: Wed Nov 27 12:11:15 2013 -0500 info updates --- developers/discomfitor/i

Re: [E-devel] E18 CFBugs #4

2013-11-27 Thread David Seikel
Use "focus follows mouse", shade a window that is over other windows, switch desktops, switch back, note that hovering over where the shaded window would be if it was not shaded focuses that shaded window instead of the window underneath. -- A big old stinking pile of genius that no one wants coz

[E-devel] E18 CFBugs #4

2013-11-27 Thread Michael Blumenkrantz
Post em if you got em -- Rapidly troubleshoot problems before they affect your business. Most IT organizations don't have a clear picture of how application performance affects their revenue. With AppDynamics, you get 10

[EGIT] [core/enlightenment] master 01/02: force comp reshape after desklock hide

2013-11-27 Thread Mike Blumenkrantz
discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=e4e6b0d0fde57c95cd19b393364acd75ad133154 commit e4e6b0d0fde57c95cd19b393364acd75ad133154 Author: Mike Blumenkrantz Date: Wed Nov 27 10:25:36 2013 -0500 force comp reshape after des

[EGIT] [core/enlightenment] master 02/02: force comp effect reset/unclip when switching desks using border menu

2013-11-27 Thread Mike Blumenkrantz
discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=1d60852734c2ec03bba0c48f3642dfddba2b4ee0 commit 1d60852734c2ec03bba0c48f3642dfddba2b4ee0 Author: Mike Blumenkrantz Date: Wed Nov 27 10:37:51 2013 -0500 force comp effect reset/uncl

Re: [E-devel] [EGIT] [core/efl] master 02/02: ecore_con: fix unitialized use of buffer from strncpy.

2013-11-27 Thread Gustavo Sverzut Barbieri
On Wed, Nov 27, 2013 at 3:31 AM, Cedric BAIL wrote: > cedric pushed a commit to branch master. > > http://git.enlightenment.org/core/efl.git/commit/?id=1e70d703b329499982f484ce4f7a1227fb57919d > > commit 1e70d703b329499982f484ce4f7a1227fb57919d > Author: Cedric Bail > Date: Wed Nov 27 14:30:03

Re: [E-devel] [EGIT] [core/efl] master 01/01: evas/cserve2: Update image loaders list

2013-11-27 Thread Gustavo Sverzut Barbieri
shouldn't we populate this list during runtime? On Wed, Nov 27, 2013 at 2:50 AM, Jean-Philippe Andre wrote: > jpeg pushed a commit to branch master. > > http://git.enlightenment.org/core/efl.git/commit/?id=7aa577c774fae89d724546f6120793a0927fa67b > > commit 7aa577c774fae89d724546f6120793a0927fa67

Re: [E-devel] [EGIT] [core/efl] master 01/01: Revert "evas: allow fuzziness on the texture format returned by GL."

2013-11-27 Thread Cedric BAIL
On Wed, Nov 27, 2013 at 8:43 PM, Rafael Antognolli wrote: > On Tue, Nov 26, 2013 at 10:08 PM, Carsten Haitzler > wrote: >> On Tue, 26 Nov 2013 13:46:11 -0200 Rafael Antognolli >>> On Tue, Nov 26, 2013 at 12:30 PM, Cedric BAIL wrote: >>> > On Tue, Nov 26, 2013 at 2:51 PM, Rafael Antognolli >>>

Re: [E-devel] [EGIT] [core/enlightenment] master 01/02: oops - remove debug commit that snuck in!

2013-11-27 Thread Gustavo Sverzut Barbieri
On Wed, Nov 27, 2013 at 12:33 PM, Lucas De Marchi wrote: > On Wed, Nov 27, 2013 at 11:57 AM, Carsten Haitzler > wrote: >> On Wed, 27 Nov 2013 11:51:28 -0200 Gustavo Sverzut Barbieri >> said: >> >>> On Mon, Nov 25, 2013 at 10:16 PM, Carsten Haitzler >>> wrote: >>> > On Mon, 25 Nov 2013 17:05:55

Re: [E-devel] [EGIT] [core/enlightenment] master 01/02: oops - remove debug commit that snuck in!

2013-11-27 Thread Lucas De Marchi
On Wed, Nov 27, 2013 at 11:57 AM, Carsten Haitzler wrote: > On Wed, 27 Nov 2013 11:51:28 -0200 Gustavo Sverzut Barbieri > said: > >> On Mon, Nov 25, 2013 at 10:16 PM, Carsten Haitzler >> wrote: >> > On Mon, 25 Nov 2013 17:05:55 -0200 Gustavo Sverzut Barbieri >> > said: >> > >> >> On Mon, Nov 25

[EGIT] [bindings/python/python-efl] master 01/01: Compatibility: Support the old kwarg "module_filename" in emotion.

2013-11-27 Thread Kai Huuhko
kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=80b554312ae63c629e81ba433882f0d22fb519ed commit 80b554312ae63c629e81ba433882f0d22fb519ed Author: Kai Huuhko Date: Wed Nov 27 16:05:00 2013 +0200 Compatibility: Support the old kw

Re: [E-devel] [EGIT] [core/enlightenment] master 01/02: oops - remove debug commit that snuck in!

2013-11-27 Thread The Rasterman
On Wed, 27 Nov 2013 11:51:28 -0200 Gustavo Sverzut Barbieri said: > On Mon, Nov 25, 2013 at 10:16 PM, Carsten Haitzler > wrote: > > On Mon, 25 Nov 2013 17:05:55 -0200 Gustavo Sverzut Barbieri > > said: > > > >> On Mon, Nov 25, 2013 at 10:01 AM, Cedric BAIL wrote: > >> > On Mon, Nov 25, 2013 at

Re: [E-devel] [EGIT] [core/enlightenment] master 01/02: oops - remove debug commit that snuck in!

2013-11-27 Thread Gustavo Sverzut Barbieri
On Mon, Nov 25, 2013 at 10:16 PM, Carsten Haitzler wrote: > On Mon, 25 Nov 2013 17:05:55 -0200 Gustavo Sverzut Barbieri > said: > >> On Mon, Nov 25, 2013 at 10:01 AM, Cedric BAIL wrote: >> > On Mon, Nov 25, 2013 at 12:30 PM, Tom Hacohen >> > wrote: >> >> >> >> This reminds me. Let's git rid of

[EGIT] [core/efl] master 01/01: ecore ecore_x_e: initialize local variable to avoid having wrong value.

2013-11-27 Thread Daniel Juyung Seo
seoz pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a5c98947aea32671269d925733dd5328db8c6760 commit a5c98947aea32671269d925733dd5328db8c6760 Author: Daniel Juyung Seo Date: Wed Nov 27 21:43:06 2013 +0900 ecore ecore_x_e: initialize local variable to

Re: [E-devel] [EGIT] [core/efl] master 01/01: Revert "evas: allow fuzziness on the texture format returned by GL."

2013-11-27 Thread Rafael Antognolli
On Tue, Nov 26, 2013 at 10:08 PM, Carsten Haitzler wrote: > On Tue, 26 Nov 2013 13:46:11 -0200 Rafael Antognolli > said: > >> On Tue, Nov 26, 2013 at 12:30 PM, Cedric BAIL wrote: >> > On Tue, Nov 26, 2013 at 2:51 PM, Rafael Antognolli >> > wrote: >> >> antognolli pushed a commit to branch maste

[E-devel] [PATCH] evas - use EGL_NOK_texture_from_pixmap to get yinvert value

2013-11-27 Thread Stanislav Vorobiov
Hi everyone, This patch makes texture_from_pixmap evas feature more robust when running with EGL. In case of GLX evas uses GLX_Y_INVERTED_EXT to find out if textures that are pixmap's siblings are y-inverted: glXGetFBConfigAttrib(re->win->disp, configs[j], GLX_Y_INVERTED_EXT,

[E-devel] [PATCH] evas - use EGL_NOK_texture_from_pixmap to get yinvert value when possible

2013-11-27 Thread Stanislav Vorobiov
Instead of hardcoding yinvert=1 we should query for EGL_NOK_texture_from_pixmap extension and if it's present use EGL_Y_INVERTED_NOK value --- src/modules/evas/engines/gl_x11/evas_engine.c | 17 - 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/modules/evas/engi

[EGIT] [core/efl] master 01/01: recursive monitoring and scanning fix for icons and desktop files

2013-11-27 Thread Carsten Haitzler
raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=c69cf487463ccec7cf572220c7c0b9353f6e7db9 commit c69cf487463ccec7cf572220c7c0b9353f6e7db9 Author: Carsten Haitzler (Rasterman) Date: Wed Nov 27 19:45:29 2013 +0900 recursive monitoring and scannin

[EGIT] [core/enlightenment] master 01/01: revert threaded app menu filling code - not stable in efreet

2013-11-27 Thread Carsten Haitzler
raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=bb8e4e830c5771a8088a94cad56ce9db95b1bb42 commit bb8e4e830c5771a8088a94cad56ce9db95b1bb42 Author: Carsten Haitzler (Rasterman) Date: Wed Nov 27 19:42:09 2013 +0900 revert threaded app me