Change rotation to unsigned int.
authorChris Michael <cp.michael@samsung.com>
Wed, 1 May 2013 07:27:02 +0000 (08:27 +0100)
committerChris Michael <cp.michael@samsung.com>
Wed, 1 May 2013 10:42:05 +0000 (11:42 +0100)
Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/modules/evas/engines/drm/evas_engine.h

index b15ae1e..4cf319a 100644 (file)
@@ -32,8 +32,8 @@ typedef struct _Outbuf Outbuf;
 
 struct _Outbuf
 {
-   unsigned int depth;
-   int w, h, rotation;
+   int w, h;
+   unsigned int rotation, depth;
    Eina_Bool destination_alpha : 1;
 };