Fix the bug of BPP
authorSung-jae Park <nicesj.park@samsung.com>
Wed, 25 Jun 2014 11:20:28 +0000 (20:20 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Wed, 25 Jun 2014 11:20:28 +0000 (20:20 +0900)
Change-Id: I67b82e4c8e297f875995456c756bef1c8864fd7a

packaging/liblivebox-edje.spec
src/script_port.c

index 7f1fd02..49eb617 100644 (file)
@@ -1,6 +1,6 @@
 Name: liblivebox-edje
 Summary: EDJE Script loader for the data provider master
-Version: 0.7.2
+Version: 0.7.3
 Release: 1
 Group: HomeTF/Livebox
 License: Flora
index cfbafb4..4b4453f 100644 (file)
@@ -1719,7 +1719,7 @@ static void *alloc_with_stride_fb(void *data, int size, int *stride, int *bpp)
        }
 
        *stride = _stride;
-       *bpp = _bpp;
+       *bpp = _bpp << 3;
 
        return alloc_fb(data, size);
 }