OSDN Git Service

minigbm: Fix the flag situation
[android-x86/external-minigbm.git] / drv.h
diff --git a/drv.h b/drv.h
index 56e399f..044069f 100644 (file)
--- a/drv.h
+++ b/drv.h
@@ -39,18 +39,13 @@ extern "C" {
 #define DRV_BO_USE_SW_WRITE_NEVER      (1ull << 7)
 #define DRV_BO_USE_SW_WRITE_RARELY     (1ull << 8)
 #define DRV_BO_USE_SW_WRITE_OFTEN      (1ull << 9)
-#define DRV_BO_USE_HW_TEXTURE          (1ull << 10)
-#define DRV_BO_USE_HW_RENDER           (1ull << 11)
-#define DRV_BO_USE_HW_2D               (1ull << 12)
-#define DRV_BO_USE_HW_COMPOSER         (1ull << 13)
-#define DRV_BO_USE_HW_FB               (1ull << 14)
-#define DRV_BO_USE_EXTERNAL_DISP       (1ull << 15)
-#define DRV_BO_USE_PROTECTED           (1ull << 16)
-#define DRV_BO_USE_HW_VIDEO_ENCODER    (1ull << 17)
-#define DRV_BO_USE_HW_CAMERA_WRITE     (1ull << 18)
-#define DRV_BO_USE_HW_CAMERA_READ      (1ull << 19)
-#define DRV_BO_USE_HW_CAMERA_ZSL       (1ull << 20)
-#define DRV_BO_USE_RENDERSCRIPT                (1ull << 21)
+#define DRV_BO_USE_EXTERNAL_DISP       (1ull << 10)
+#define DRV_BO_USE_PROTECTED           (1ull << 11)
+#define DRV_BO_USE_HW_VIDEO_ENCODER    (1ull << 12)
+#define DRV_BO_USE_HW_CAMERA_WRITE     (1ull << 13)
+#define DRV_BO_USE_HW_CAMERA_READ      (1ull << 14)
+#define DRV_BO_USE_HW_CAMERA_ZSL       (1ull << 15)
+#define DRV_BO_USE_RENDERSCRIPT                (1ull << 16)
 
 typedef enum {
        DRV_FORMAT_NONE,