Backport: b0dff98 :: Simplify changed enum.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 84214
Signed-off-by: Deon Thomas <PrinceAMD.Elive@gmail.com>
This commit is contained in:
Christopher Michael 2013-02-19 10:59:49 +00:00 committed by Deon Thomas
parent 3b79dfada2
commit dc837d6e12
1 changed files with 4 additions and 8 deletions

View File

@ -7,14 +7,10 @@ typedef enum _E_Smart_Monitor_Changes E_Smart_Monitor_Changes;
enum _E_Smart_Monitor_Changes
{
E_SMART_MONITOR_CHANGED_NONE = 0,
E_SMART_MONITOR_CHANGED_CRTC = (1 << 0),
E_SMART_MONITOR_CHANGED_MODE = (1 << 1),
E_SMART_MONITOR_CHANGED_POSITION = (1 << 2),
E_SMART_MONITOR_CHANGED_ROTATION = (1 << 3),
E_SMART_MONITOR_CHANGED_REFRESH = (1 << 4),
E_SMART_MONITOR_CHANGED_RESOLUTION = (1 << 5),
E_SMART_MONITOR_CHANGED_ENABLED = (1 << 6),
E_SMART_MONITOR_CHANGED_CLONED = (1 << 7),
E_SMART_MONITOR_CHANGED_MODE = (1 << 0),
E_SMART_MONITOR_CHANGED_POSITION = (1 << 1),
E_SMART_MONITOR_CHANGED_ORIENTATION = (1 << 2),
E_SMART_MONITOR_CHANGED_ENABLED = (1 << 3)
};
Evas_Object *e_smart_monitor_add(Evas *evas);