Tom Hacohen [Thu, 4 Jun 2015 09:15:16 +0000 (10:15 +0100)]
Evas canvas: Fix some Eolian warnings.
Vivek Ellur [Thu, 4 Jun 2015 08:32:01 +0000 (10:32 +0200)]
eina: add test cases for eina_matrix3 APIs
Summary:
Added test cases for eina_matrix3_values_get, eina_matrix3_values_set,
eina_matrix3_equal, eina_matrix3_type_get APIs
Signed-off-by: Vivek Ellur <vivek.ellur@samsung.com>
Reviewers: cedric
Reviewed By: cedric
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D2623
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Cedric BAIL [Wed, 3 Jun 2015 15:56:22 +0000 (17:56 +0200)]
evas: silence warning.
So I don't like this data being void and stride being in bytes, but changing it
for silencing a warning will be a massive change. I will put that on the major
cleanup that Evas_3D need to receive.
Daniel Kolesa [Wed, 3 Jun 2015 15:47:24 +0000 (16:47 +0100)]
eolian: remove prototype of non-existent API
Daniel Kolesa [Wed, 3 Jun 2015 15:16:53 +0000 (16:16 +0100)]
eolian: add documentation handling API
This adds new APIs that deal with the new documentation syntax
provided by Eolian. The old doc comment APIs are considered
deprecated from now on and will be removed.
@feature
shilpa.singh [Wed, 3 Jun 2015 15:39:42 +0000 (16:39 +0100)]
Edje: Add have_selection check to avoid unnecessary function calls
Summary:
Check for have_selection flag when left/arrow keys are pressed to jump
across the selected text, to avoid unnecessary function calls of
comparision, copy of sel_start and sel_end pointers.
Test Plan: Press left and right arrow keys on selected and normal text.
Reviewers: herdsman, tasn
Subscribers: SubodhKumar, navnbeet, cedric
Differential Revision: https://phab.enlightenment.org/D2621
Ivan Furs [Wed, 3 Jun 2015 14:34:45 +0000 (16:34 +0200)]
evas: for aabb add interpolation frame when base frame is not found
Summary:
Old algorithm searched specified frame of the base frame and when it could not find the specified frame it ignored. So the bounding box was not synchronized with the object.
New algorithm always returns specified base frame or frame interpolation between the nearest base frames. That does synchronizes mesh object and his bounding box.
Reviewers: Hermet, cedric
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D2594
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Cedric BAIL [Wed, 3 Jun 2015 14:12:01 +0000 (16:12 +0200)]
ecore_con: fix error handling case.
Since the move to Eo, in case of error we do not need to cleanup anything when
finalize finish. The kill function was arranged to do so, but it was still emiting
an event exposing the invalid Eo object. Looking closely at the code, that should
have not happened, as there was no symetrical ADD event and the function would do
nothing else. So removing it. This prevent any potential SEGV from a function that
would catch the DEL event.
@fix
Daniel Kolesa [Wed, 3 Jun 2015 14:35:13 +0000 (15:35 +0100)]
eolian: properly fill and free all doc fields
Daniel Kolesa [Wed, 3 Jun 2015 14:06:26 +0000 (15:06 +0100)]
eolian: start exposing Eolian_Documentation
Bogdan Devichev [Wed, 3 Jun 2015 12:26:34 +0000 (21:26 +0900)]
evas_3d: fix coverity scan CID 1302703 and CID 1302702
Reviewers: Hermet
Reviewed By: Hermet
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D2613
jiin.moon [Wed, 3 Jun 2015 08:57:27 +0000 (10:57 +0200)]
emile: fix region load for jpeg image with orientation different set.
Summary:
If you try to load the jpeg image with an orientation mode defined
using elm_photocam, you can see the broken image(in canse of 90 degree)
or even segmentation fault can happen (in case of 180,270 degree)
@fix
Test Plan: photocam menu on elementary_test
Reviewers: Hermet, cedric
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D2593
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Daniel Kolesa [Wed, 3 Jun 2015 11:06:36 +0000 (12:06 +0100)]
eolian: initial test file for docs (no APIs to test yet)
Daniel Kolesa [Wed, 3 Jun 2015 11:01:08 +0000 (12:01 +0100)]
eolian: enums can't be opaque, check properly
Tom Hacohen [Mon, 1 Jun 2015 13:51:59 +0000 (14:51 +0100)]
Edje object: Fix more Eolian warnings.
Daniel Kolesa [Wed, 3 Jun 2015 10:11:12 +0000 (11:11 +0100)]
eolian: preliminary parsing of doc syntax
Dongyeon Kim [Wed, 27 May 2015 00:11:23 +0000 (09:11 +0900)]
evas/gl_common: Reset mvp matrix only for shaders that are being used
Summary:
Evas has quite a number of shaders, and resetting the projection matrix
for all shaders takes some time, which is an overhead when target surface
is continuously being changed (ie. when using proxy).
So here we reset the projection matrix for shaders that are actually used.
Dongyeon Kim [Tue, 19 May 2015 06:18:37 +0000 (15:18 +0900)]
Evas GL: support surfaceless make current
Summary:
Evas GL now supports surfaceless make current, where
evas_gl_make_current can be called with sfc parameter NULL.
This closely resembles EGL_KHR_surfaceless_context extension,
where applications that only want to render to client API targets
can make current to NULL surface instead of creating a dummy egl surface.
@feature
Dongyeon Kim [Tue, 19 May 2015 02:30:05 +0000 (11:30 +0900)]
Evas GL: Skip surface buffers create/allocate for pbuffer with NO_FBO
Summary:
When pbuffer surface is created with EVAS_GL_NO_FBO config,
FBO should not be created/allocated.
Dongyeon Kim [Tue, 12 May 2015 03:03:29 +0000 (12:03 +0900)]
Evas GL: Match FBO config with window surface config
Summary:
When direct rendering is enabled, FBO configuration should match
window surface configuration as FBO will be used in fallback cases.
So create FBO with configuration from window surface.
@fix
Dongyeon Kim [Mon, 11 May 2015 10:57:22 +0000 (19:57 +0900)]
Evas GL: Pass correct attachment enum for glDiscardFramebufferEXT
Summary:
When default framebuffer(0) is bound, attachment should contain
COLOR, DEPTH or STENCIL for glDiscardFramebufferEXT.
When a framebuffer object is bound, attachment should contain
COLOR_ATTACHMENT0, DEPTH_ATTACHMENT or STENCIL_ATTACHMENT.
This should be correctly taken into account for indirect rendering,
where internal FBO is used.
@fix
Dongyeon Kim [Thu, 30 Apr 2015 07:04:47 +0000 (16:04 +0900)]
Evas GL: return correct context for context_get with indirect context
Summary:
When evas gl falls back to using indirect context,
evas_gl_current_context_get() should return the indirect context.
@fix
Dongyeon Kim [Thu, 30 Apr 2015 03:20:29 +0000 (12:20 +0900)]
Evas GL: Separate EGL and GL extension lists
Summary:
Separate EGL extensions from GL/GLES extension list, since
we have extension list for each GL version, and we do not want to
check EGL extensions differently when different GL versions are used.
This also simplifies extension string get function as we just need to
concatenate EGL and GL extensions rathan than keeping track of
GL extensions only.
Dongyeon Kim [Wed, 29 Apr 2015 13:56:52 +0000 (22:56 +0900)]
Evas GL: Share texture id in case EGL image is not supported
Summary:
When EGL image is not supported, Evas GL should share texture id
to the gl backend for indirect rendering to work.
Dongyeon Kim [Wed, 29 Apr 2015 03:28:08 +0000 (12:28 +0900)]
Evas GL: Make current to an Evas GL context before destroying surface buffers
Summary:
We should make current to an Evas GL context before calling _surface_buffers_destroy,
otherwise resources from GL backend will be removed.
@fix
Dongyeon Kim [Tue, 21 Apr 2015 01:54:02 +0000 (10:54 +0900)]
Evas GL: Add indirect surface fallback and yinvert callback
Summary:
When either FBO or EGL image from texture extension is not supported,
we can use pixmap surface as indirect surface fallback.
Since native pixmaps have (0,0) in the upper left while
FBOs have (0,0) in the lower left, we should invert the y coordinates
when native pixmaps are used as the render target.
To accomodate run-time y-invert check we add a new callback for
EVAS_NATIVE_SURFACE_EVASGL type.
Reviewers: cedric, jpeg
Subscribers: wonsik, mer.kim, cedric
Dongyeon Kim [Thu, 16 Apr 2015 07:21:33 +0000 (16:21 +0900)]
Evas GL: Fix direct_mem_opt and direct_override
Summary:
Remove surface buffer create/allocate in pbuffer_surface_create.
In evgl_make_current, we should use direct_mem_opt, direct_override values
set in EVGL_Surface struct, not the global value set by env variables.
@fix
Dongyeon Kim [Tue, 21 Apr 2015 01:18:16 +0000 (10:18 +0900)]
Evas GL: destroy egl image when surface is destroyed
Summary:
We should destroy egl image when surface is destroyed
to avoid memory leak.
@fix
Test Plan: Evas GL test cases
Reviewers: jpeg
Subscribers: mer.kim, mythri, wonsik, cedric
Differential Revision: https://phab.enlightenment.org/D2357
Dongyeon Kim [Tue, 14 Apr 2015 06:51:32 +0000 (15:51 +0900)]
Evas GL: 1.x support for GLX
Summary:
Now we can support EVAS_GL_GLES_1_X version for GLX backend
with both direct and indirect rendering.
Refactored api get functions to have similar code path for each version.
@feature
Test Plan: Evas GL test case
Reviewers: cedric, jpeg
Subscribers: cedric, mer.kim, mythri, wonsik
Differential Revision: https://phab.enlightenment.org/D2342
Jean-Philippe Andre [Wed, 3 Jun 2015 02:02:44 +0000 (11:02 +0900)]
Evas masking: Fix rare issue of invalid rendering (GL)
Thanks Dongyeon for finding out this solution. Now that was
one nasty bug :)
Somehow the currently bound texture id would not match what
Evas expected, so Evas would not call glBindTexture when
required. As a result it was drawing black (sampling from tex 0).
@fix
Daniel Kolesa [Tue, 2 Jun 2015 17:27:46 +0000 (18:27 +0100)]
eolian: Eolian_Object for docs
Daniel Kolesa [Tue, 2 Jun 2015 17:12:09 +0000 (18:12 +0100)]
eolian: initial lexing of documentation
Chris Michael [Tue, 2 Jun 2015 13:24:22 +0000 (09:24 -0400)]
evas-drm: Remove useless fields from Outbuf structure
Summary: These fields are not needed in the outbuf structure as they
are never used, so just remove them.
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Chris Michael [Tue, 2 Jun 2015 13:17:57 +0000 (09:17 -0400)]
evas-drm: Minor formatting fix
NB: No functional changes
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Chris Michael [Mon, 1 Jun 2015 17:52:34 +0000 (13:52 -0400)]
evas-gl-drm: Fix formatting
NB: No functional changes
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Chris Michael [Mon, 1 Jun 2015 17:45:20 +0000 (13:45 -0400)]
ecore-evas: Fix issue of gl_drm engine not being able to load
Summary: The engine for OpenGL with drm is actually called "gl_drm".
There was an issue where the engine_get function would return false
because the #ifdef was testing the wrong thing.
@fix
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Daniel Kolesa [Mon, 1 Jun 2015 16:34:52 +0000 (17:34 +0100)]
autotools: provide smaller EOLIAN_FLAGS for customization
Daniel Kolesa [Mon, 1 Jun 2015 15:59:00 +0000 (16:59 +0100)]
autotools: remove EOLIAN_FLAGS
We don't need to specify each dir separately as Eolian
has been searching recursively for quite a while.
Cedric BAIL [Mon, 1 Jun 2015 15:49:17 +0000 (17:49 +0200)]
edje: remove left over copy&paste that triggered warning.
katpavalli [Mon, 1 Jun 2015 15:38:04 +0000 (17:38 +0200)]
edje: add ability to change the language on one specific edje object.
Summary:
Add a new property to edje_object.eo for setting the language on one Edje_Object.
Test Plan:
Test Code to test this implementation is done as part of efl/src/examples/edje/edje-text.c and efl/src/examples/edje/text.edc
edje_cc -md <dir path>/efl/src/examples/edje/ text.edc && gcc -o edje-text edje-text.c `pkg-config --libs --cflags ecore-evas edje evas ecore eo`
./edje-text
1) Click On the text "Click here"
The language gets changed as per the specific edje object.
2) Click on the text object at bottom. "Click here"
The system language gets changed and the below two edje objects language are changed globally.
Reviewers: cedric, shilpasingh
Subscribers: poornima.srinivasan, govi, rajeshps, cedric
Differential Revision: https://phab.enlightenment.org/D2559
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Cedric BAIL [Mon, 1 Jun 2015 15:19:46 +0000 (17:19 +0200)]
pkg-config: fix portability issue on Windows.
@fix T2458
Daniel Kolesa [Mon, 1 Jun 2015 14:24:00 +0000 (15:24 +0100)]
eolian: tests for declaration api
Daniel Kolesa [Mon, 1 Jun 2015 14:06:25 +0000 (15:06 +0100)]
eolian/generator: generate types in their original decl order
Daniel Kolesa [Mon, 1 Jun 2015 13:48:50 +0000 (14:48 +0100)]
eolian: add actual useful declaration APIs
Daniel Kolesa [Mon, 1 Jun 2015 13:32:19 +0000 (14:32 +0100)]
eolian: initial exposed declaration API - not yet very useful
This API allows you to retrieve a list of declarations in the file
(classes, types, vars) in the order they were declared in.
@feature
Tom Hacohen [Mon, 1 Jun 2015 13:05:31 +0000 (14:05 +0100)]
Efl File: Add Eina.File eolian type and use it.
Tom Hacohen [Mon, 1 Jun 2015 13:04:09 +0000 (14:04 +0100)]
Eo types: Fix Eina.Rectangle's namespace.
Tom Hacohen [Mon, 1 Jun 2015 13:03:04 +0000 (14:03 +0100)]
Eo types: Fix Eina.Stringshare's namespace.
Tom Hacohen [Mon, 1 Jun 2015 13:01:11 +0000 (14:01 +0100)]
Evas object: Migrate (some) types to .eo files.
Tom Hacohen [Mon, 1 Jun 2015 11:12:03 +0000 (12:12 +0100)]
Evas table: Migrate types to .eo files.
Tom Hacohen [Mon, 1 Jun 2015 10:47:37 +0000 (11:47 +0100)]
Evas box: Migrate (some) types to .eo files.
Tom Hacohen [Mon, 1 Jun 2015 10:33:59 +0000 (11:33 +0100)]
Evas textgrid: Migrate types to .eo files.
Tom Hacohen [Mon, 1 Jun 2015 10:17:22 +0000 (11:17 +0100)]
Evas grid: Migrate types to .eo files.
Tom Hacohen [Mon, 1 Jun 2015 10:16:22 +0000 (11:16 +0100)]
Evas smart: Migrate types to .eo files.
Tom Hacohen [Mon, 1 Jun 2015 10:06:48 +0000 (11:06 +0100)]
Evas polygon: Migrate types to .eo files.
Tom Hacohen [Mon, 1 Jun 2015 10:00:51 +0000 (11:00 +0100)]
Evas textblock: Migrate types to .eo.
Tom Hacohen [Mon, 1 Jun 2015 09:44:45 +0000 (10:44 +0100)]
Evas text: Migrate types to .eo.
Vincent Torri [Wed, 20 May 2015 04:18:43 +0000 (06:18 +0200)]
evil: deprecate evil_tmpdir_get() and evil_homedir_get().
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Tom Hacohen [Mon, 1 Jun 2015 09:30:16 +0000 (10:30 +0100)]
Evas common interface: Add a workaround for Eolian issue.
This should be fixed properly once Eolian supports forward class
declarations.
Tom Hacohen [Mon, 1 Jun 2015 09:16:01 +0000 (10:16 +0100)]
Evas: Migrate more types to Eolian.
Cedric BAIL [Sun, 31 May 2015 12:57:48 +0000 (14:57 +0200)]
evas: forgotten header needed for make dist.
Bogdan Devichev [Fri, 29 May 2015 16:14:08 +0000 (18:14 +0200)]
evas: Evas_3D examples use new API for creating primitives.
Summary: Examples changed due to D2516
Reviewers: Oleksander, Hermet, raster, cedric
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D2517
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Srivardhan Hebbar [Fri, 29 May 2015 16:12:50 +0000 (18:12 +0200)]
ecore_con: add eo_event handler to efl_networ_url.
Summary: Signed-off-by: Srivardhan Hebbar <sri.hebbar@samsung.com>
Reviewers: cedric
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D2556
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Nak-Gyeong Kim [Fri, 29 May 2015 16:11:49 +0000 (18:11 +0200)]
edje: edje_cc_parse should check pair of parens.
Summary:
Fix parens bug.
((x + y)-z) is OK.
((x + y) - z) is NOT OK. This patch can cover this case.
@fix
Signed-off-by: Nak-Gyeong Kim <nakkyong.kim@samsung.com>
Test Plan:
Test in edc.
((x + y)-z) is OK.
((x + y) - z) is NOT OK. This patch can cover this case.
If parens are not paired, it will notify.
Reviewers: raster, Hermet, cedric
Subscribers: kimcinoo, jaehwan
Differential Revision: https://phab.enlightenment.org/D2554
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Daniel Kolesa [Fri, 29 May 2015 15:48:21 +0000 (16:48 +0100)]
gitignore++
Daniel Kolesa [Fri, 29 May 2015 15:44:10 +0000 (16:44 +0100)]
eolian/generator: clean up comment gen
Tom Hacohen [Fri, 29 May 2015 15:42:24 +0000 (16:42 +0100)]
Evas types: Fix inclusion of evas types from the right location.
My system was dirty and it was already installed in the right place.
Now it works as expected.
Reported on IRC by batden.
Cedric BAIL [Fri, 29 May 2015 15:18:23 +0000 (17:18 +0200)]
eina: beginning of a generic quaternion API.
Cedric BAIL [Thu, 28 May 2015 14:13:25 +0000 (16:13 +0200)]
eina: include dependency header cleanly.
Cedric BAIL [Thu, 28 May 2015 12:35:55 +0000 (14:35 +0200)]
eina: add the beginning of an Eina_Matrix4 API.
Daniel Kolesa [Fri, 29 May 2015 15:10:40 +0000 (16:10 +0100)]
eolian: more advanced comment parsing (properly skip asterisks etc)
Tom Hacohen [Fri, 29 May 2015 14:00:10 +0000 (15:00 +0100)]
Evas map: Move opaque type definition to .eo.
Daniel Kolesa [Fri, 29 May 2015 13:57:14 +0000 (14:57 +0100)]
eolian: use fprintf(stderr) instead of logging where it makes sense
Tom Hacohen [Fri, 29 May 2015 13:52:33 +0000 (14:52 +0100)]
Evas: Move evas aspect control to eolian and start using it.
Tom Hacohen [Fri, 29 May 2015 13:49:28 +0000 (14:49 +0100)]
Evas: Move evas coord to eolian and start using it.
Tom Hacohen [Fri, 29 May 2015 13:46:02 +0000 (14:46 +0100)]
Evas: Add a general evas types header.
Tom Hacohen [Fri, 29 May 2015 13:20:11 +0000 (14:20 +0100)]
Efl gfx shape: Use correct class names in .eo file.
Tom Hacohen [Fri, 29 May 2015 13:16:04 +0000 (14:16 +0100)]
Efl gfx stack: Fix eolian warnings.
Daniel Kolesa [Fri, 29 May 2015 11:03:57 +0000 (12:03 +0100)]
eolian: "generic_value" builtin type
Tom Hacohen [Fri, 29 May 2015 10:31:05 +0000 (11:31 +0100)]
Eo: Add eina_types.eot for general types.
Tom Hacohen [Fri, 29 May 2015 10:07:12 +0000 (11:07 +0100)]
Evas object: Use correct type in .eo file.
When we want an Evas_Object in Eo files, we should use Evas.Object.
Tom Hacohen [Fri, 29 May 2015 09:32:48 +0000 (10:32 +0100)]
Eo base: move type definitions into eo_base.eo.
Daniel Kolesa [Fri, 29 May 2015 10:38:54 +0000 (11:38 +0100)]
eolian: restrict the complex-type condition
Daniel Kolesa [Fri, 29 May 2015 10:24:55 +0000 (11:24 +0100)]
eolian: tests for extern struct/typedef not-generation
Daniel Kolesa [Fri, 29 May 2015 10:19:27 +0000 (11:19 +0100)]
eolian: reserve __builtin_event_cb
Daniel Kolesa [Fri, 29 May 2015 10:15:28 +0000 (11:15 +0100)]
eolian/generator: don't generate extern types
Daniel Kolesa [Fri, 29 May 2015 10:10:41 +0000 (11:10 +0100)]
eo_cxx: remove unused parameter
Jihoon Kim [Fri, 29 May 2015 04:16:49 +0000 (13:16 +0900)]
Fix issue wrong surrounding text returns when there is selection area
@fix
Change-Id: Iff89b396c1a69d2879b9f710eb41e58e9d377b87
Tom Hacohen [Thu, 28 May 2015 16:47:33 +0000 (17:47 +0100)]
Eo base: Remove the free_func parameter from key_data_set.
This was not really useful and against the Eolian guidelines.
While I promised I won't break things until the 27th, I was ill
(still am), so I'm giving myself a 1 day pass. :P
Tom Hacohen [Thu, 28 May 2015 16:03:49 +0000 (17:03 +0100)]
Eo base: Fix Eolian files to use Eo.Base instead of Eo.
Eo is not a known Eolian type, we should only be using the class names.
Tom Hacohen [Thu, 28 May 2015 15:49:13 +0000 (16:49 +0100)]
Eo: rename conflicting internal Eo_Base to Eo_Header
This name conflicts with the class Eo.Base and should have
been called Eo_Header from the start anyway.
Daniel Kolesa [Thu, 28 May 2015 14:54:35 +0000 (15:54 +0100)]
elua: make eo bindings work with the new generated format
Daniel Kolesa [Thu, 28 May 2015 14:41:30 +0000 (15:41 +0100)]
elua: generate separate key/value numbers for getters/setters
Jihoon Kim [Thu, 28 May 2015 04:13:25 +0000 (13:13 +0900)]
ecore_imf/wayland: support input language mode in wayland text input
@feature
Jihoon Kim [Thu, 28 May 2015 02:00:20 +0000 (11:00 +0900)]
ecore_imf/wayland: support input hint in wayland text input
@feature
Mike Blumenkrantz [Thu, 28 May 2015 02:11:56 +0000 (22:11 -0400)]
evas: make image_size_get() return the actual image size
proxy/3d/etc images would previously return 0x0, breaking size calcs
@fix
@jpeg
Jihoon Kim [Thu, 28 May 2015 01:05:11 +0000 (10:05 +0900)]
ecore_imf/wayland: support password mode in wayland text input
@feature
Carsten Haitzler (Rasterman) [Wed, 27 May 2015 14:31:28 +0000 (23:31 +0900)]
emotion gstreamer1 module - support 709 color matrix properly now
now that 709 colorsp[ace works in evas, use it properly in gst1 module
if possible
Daniel Kolesa [Wed, 27 May 2015 13:32:03 +0000 (14:32 +0100)]
eolian: allow a filename (rather than path) to be given to eolian_file_parse
Carsten Haitzler (Rasterman) [Wed, 27 May 2015 11:17:20 +0000 (20:17 +0900)]
evas - fix yuv support to no longer ignore 709 colorspace params
if yuou use 709 instead of 601 yuv (ycbcr) evas will just be wrong and
use 601. this fixes that and implements 709. it also fixes a scaling
bug for yuv in the gl engine. no one noticed but me, so i won't call
this a bug fix, and it can go into the next efl release - no need to
backport unless it actually bothers peolpe (which it seemingly doesn't)