HomeSort by relevance Sort by last modified time
    Searched full:fourcc_code (Results 1 - 2 of 2) sorted by null

  /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_RGB332 fourcc_code('R', 'G', 'B', '8')
27 #define DRM_FORMAT_BGR233 fourcc_code('B', 'G', 'R', '8')
29 #define DRM_FORMAT_XRGB4444 fourcc_code('X', 'R', '1', '2')
30 #define DRM_FORMAT_XBGR4444 fourcc_code('X', 'B', '1', '2')
31 #define DRM_FORMAT_RGBX4444 fourcc_code('R', 'X', '1', '2')
32 #define DRM_FORMAT_BGRX4444 fourcc_code('B', 'X', '1', '2')
34 #define DRM_FORMAT_ARGB4444 fourcc_code('A', 'R', '1', '2')
35 #define DRM_FORMAT_ABGR4444 fourcc_code('A', 'B', '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_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...]

Completed in 99 milliseconds