e_plane: change E_Plane_Type_State to E_Plane_Type 59/77759/2 accepted/tizen/common/20160703.131031 accepted/tizen/ivi/20160703.110702 accepted/tizen/mobile/20160703.110537 accepted/tizen/tv/20160703.110614 accepted/tizen/wearable/20160703.110638 submit/tizen/20160702.084834
authorJuyeon Lee <juyeonne.lee@samsung.com>
Fri, 1 Jul 2016 04:11:59 +0000 (13:11 +0900)
committerDoyoun Kang <doyoun.kang@samsung.com>
Fri, 1 Jul 2016 07:07:38 +0000 (00:07 -0700)
Change-Id: Iba575db97eebcb675190ccdfa81078eb141f4c9f

src/bin/e_plane.c
src/bin/e_plane.h

index e329f4634166fcadd04ef8b652dd867e92a6305d..3a9a2be616553411e079b6a0553636ec0a707d0c 100644 (file)
@@ -107,7 +107,7 @@ e_plane_resolution_set(E_Plane *plane,
 
 E_API Eina_Bool
 e_plane_type_set(E_Plane *plane,
-                 E_Plane_Type_State type)
+                 E_Plane_Type type)
 {
    EINA_SAFETY_ON_NULL_RETURN_VAL(plane, EINA_FALSE);
 
@@ -120,7 +120,7 @@ e_plane_type_set(E_Plane *plane,
    return EINA_TRUE;
 }
 
-E_API E_Plane_Type_State
+E_API E_Plane_Type
 e_plane_type_get(E_Plane *plane)
 {
    EINA_SAFETY_ON_NULL_RETURN_VAL(plane, E_PLANE_TYPE_INVALID);
index bf16c3b6fd237b387a2a120cc60beef7d920462b..cae3ebb7dbbd19839d725f680b869899ab8fc3c0 100644 (file)
@@ -6,7 +6,7 @@ typedef enum _E_Plane_Type_State
    E_PLANE_TYPE_VIDEO,
    E_PLANE_TYPE_OVERLAY,
    E_PLANE_TYPE_CURSOR
-} E_Plane_Type_State;
+} E_Plane_Type;
 
 typedef enum _E_Plane_Color
 {
@@ -32,7 +32,7 @@ struct _E_Plane
      } geometry;
 
    const char           *name;
-   E_Plane_Type_State    type;
+   E_Plane_Type          type;
    E_Plane_Color         color;
 
    E_Client             *ec;
@@ -48,8 +48,8 @@ EINTERN int                  e_plane_shutdown(void);
 EINTERN E_Plane             *e_plane_new(E_Output *eout, int zpos, Eina_Bool is_pri);
 EINTERN void                 e_plane_free(E_Plane *plane);
 E_API Eina_Bool              e_plane_resolution_set(E_Plane *plane, int w, int h);
-E_API Eina_Bool              e_plane_type_set(E_Plane *plane, E_Plane_Type_State type);
-E_API E_Plane_Type_State     e_plane_type_get(E_Plane *plane);
+E_API Eina_Bool              e_plane_type_set(E_Plane *plane, E_Plane_Type type);
+E_API E_Plane_Type           e_plane_type_get(E_Plane *plane);
 E_API E_Client              *e_plane_ec_get(E_Plane *plane);
 E_API E_Client              *e_plane_ec_prepare_get(E_Plane *plane);
 E_API Eina_Bool              e_plane_ec_prepare_set(E_Plane *plane, E_Client *ec);