/external/libdrm/include/drm/ |
drm_fourcc.h | 29 #define fourcc_code(a,b,c,d) ((uint32_t)(a) | ((uint32_t)(b) << 8) | \ macro 35 #define DRM_FORMAT_C8 fourcc_code('C', '8', ' ', ' ') /* [7:0] C */ 38 #define DRM_FORMAT_RGB332 fourcc_code('R', 'G', 'B', '8') /* [7:0] R:G:B 3:3:2 */ 39 #define DRM_FORMAT_BGR233 fourcc_code('B', 'G', 'R', '8') /* [7:0] B:G:R 2:3:3 */ 42 #define DRM_FORMAT_XRGB4444 fourcc_code('X', 'R', '1', '2') /* [15:0] x:R:G:B 4:4:4:4 little endian */ 43 #define DRM_FORMAT_XBGR4444 fourcc_code('X', 'B', '1', '2') /* [15:0] x:B:G:R 4:4:4:4 little endian */ 44 #define DRM_FORMAT_RGBX4444 fourcc_code('R', 'X', '1', '2') /* [15:0] R:G:B:x 4:4:4:4 little endian */ 45 #define DRM_FORMAT_BGRX4444 fourcc_code('B', 'X', '1', '2') /* [15:0] B:G:R:x 4:4:4:4 little endian */ 47 #define DRM_FORMAT_ARGB4444 fourcc_code('A', 'R', '1', '2') /* [15:0] A:R:G:B 4:4:4:4 little endian */ 48 #define DRM_FORMAT_ABGR4444 fourcc_code('A', 'B', '1', '2') /* [15:0] A:B:G:R 4:4:4:4 little endian * [all...] |
/bionic/libc/kernel/uapi/drm/ |
drm_fourcc.h | 22 #define fourcc_code(a,b,c,d) ((__u32) (a) | ((__u32) (b) << 8) | ((__u32) (c) << 16) | ((__u32) (d) << 24)) macro 25 #define DRM_FORMAT_C8 fourcc_code('C', '8', ' ', ' ') 26 #define DRM_FORMAT_R8 fourcc_code('R', '8', ' ', ' ') 27 #define DRM_FORMAT_RG88 fourcc_code('R', 'G', '8', '8') 29 #define DRM_FORMAT_GR88 fourcc_code('G', 'R', '8', '8') 30 #define DRM_FORMAT_RGB332 fourcc_code('R', 'G', 'B', '8') 31 #define DRM_FORMAT_BGR233 fourcc_code('B', 'G', 'R', '8') 32 #define DRM_FORMAT_XRGB4444 fourcc_code('X', 'R', '1', '2') 34 #define DRM_FORMAT_XBGR4444 fourcc_code('X', 'B', '1', '2') 35 #define DRM_FORMAT_RGBX4444 fourcc_code('R', 'X', '1', '2' [all...] |
/external/kernel-headers/original/uapi/drm/ |
drm_fourcc.h | 29 #define fourcc_code(a, b, c, d) ((__u32)(a) | ((__u32)(b) << 8) | \ macro 35 #define DRM_FORMAT_C8 fourcc_code('C', '8', ' ', ' ') /* [7:0] C */ 38 #define DRM_FORMAT_R8 fourcc_code('R', '8', ' ', ' ') /* [7:0] R */ 41 #define DRM_FORMAT_RG88 fourcc_code('R', 'G', '8', '8') /* [15:0] R:G 8:8 little endian */ 42 #define DRM_FORMAT_GR88 fourcc_code('G', 'R', '8', '8') /* [15:0] G:R 8:8 little endian */ 45 #define DRM_FORMAT_RGB332 fourcc_code('R', 'G', 'B', '8') /* [7:0] R:G:B 3:3:2 */ 46 #define DRM_FORMAT_BGR233 fourcc_code('B', 'G', 'R', '8') /* [7:0] B:G:R 2:3:3 */ 49 #define DRM_FORMAT_XRGB4444 fourcc_code('X', 'R', '1', '2') /* [15:0] x:R:G:B 4:4:4:4 little endian */ 50 #define DRM_FORMAT_XBGR4444 fourcc_code('X', 'B', '1', '2') /* [15:0] x:B:G:R 4:4:4:4 little endian */ 51 #define DRM_FORMAT_RGBX4444 fourcc_code('R', 'X', '1', '2') /* [15:0] R:G:B:x 4:4:4:4 little endian * [all...] |
/hardware/intel/img/hwcomposer/merrifield/include/ |
DrmConfig.h | 22 #define fourcc_code(a, b, c, d) ((__u32)(a) | ((__u32)(b) << 8) | \ macro 24 #define DRM_FORMAT_XRGB8888 fourcc_code('X', 'R', '2', '4') /* [31:0] x:R:G:B 8:8:8:8 little endian */
|