Searched refs:fourcc_code (Results 1 – 9 of 9) sorted by relevance
/hardware/google/gfxstream/host/ |
D | drm_fourcc.h | 32 #define fourcc_code(a, b, c, d) ((uint32_t)(a) | ((uint32_t)(b) << 8) | \ macro 38 #define DRM_FORMAT_C8 fourcc_code('C', '8', ' ', ' ') /* [7:0] C */ 41 #define DRM_FORMAT_R8 fourcc_code('R', '8', ' ', ' ') /* [7:0] R */ 44 #define DRM_FORMAT_R16 fourcc_code('R', '1', '6', ' ') /* [15:0] R little endian */ 47 #define DRM_FORMAT_RG88 fourcc_code('R', 'G', '8', '8') /* [15:0] R:G 8:8 little endian */ 48 #define DRM_FORMAT_GR88 fourcc_code('G', 'R', '8', '8') /* [15:0] G:R 8:8 little endian */ 51 #define DRM_FORMAT_RG1616 fourcc_code('R', 'G', '3', '2') /* [31:0] R:G 16:16 little endian */ 52 #define DRM_FORMAT_GR1616 fourcc_code('G', 'R', '3', '2') /* [31:0] G:R 16:16 little endian */ 55 #define DRM_FORMAT_RGB332 fourcc_code('R', 'G', 'B', '8') /* [7:0] R:G:B 3:3:2 */ 56 #define DRM_FORMAT_BGR233 fourcc_code('B', 'G', 'R', '8') /* [7:0] B:G:R 2:3:3 */ [all …]
|
/hardware/google/gfxstream/guest/mesa/include/drm-uapi/ |
D | drm_fourcc.h | 105 #define fourcc_code(a, b, c, d) ((__u32)(a) | ((__u32)(b) << 8) | \ macro 114 #define DRM_FORMAT_C1 fourcc_code('C', '1', ' ', ' ') /* [7:0] C0:C1:C2:C3:C4:C5:C6:C7 1:1:1:1:1:1… 115 #define DRM_FORMAT_C2 fourcc_code('C', '2', ' ', ' ') /* [7:0] C0:C1:C2:C3 2:2:2:2 four pixels/byt… 116 #define DRM_FORMAT_C4 fourcc_code('C', '4', ' ', ' ') /* [7:0] C0:C1 4:4 two pixels/byte */ 117 #define DRM_FORMAT_C8 fourcc_code('C', '8', ' ', ' ') /* [7:0] C */ 120 #define DRM_FORMAT_D1 fourcc_code('D', '1', ' ', ' ') /* [7:0] D0:D1:D2:D3:D4:D5:D6:D7 1:1:1:1:1:1… 123 #define DRM_FORMAT_D2 fourcc_code('D', '2', ' ', ' ') /* [7:0] D0:D1:D2:D3 2:2:2:2 four pixels/byt… 126 #define DRM_FORMAT_D4 fourcc_code('D', '4', ' ', ' ') /* [7:0] D0:D1 4:4 two pixels/byte */ 129 #define DRM_FORMAT_D8 fourcc_code('D', '8', ' ', ' ') /* [7:0] D */ 132 #define DRM_FORMAT_R1 fourcc_code('R', '1', ' ', ' ') /* [7:0] R0:R1:R2:R3:R4:R5:R6:R7 1:1:1:1:1:1… [all …]
|
/hardware/google/gchips/gralloc4/src/ |
D | mali_fourcc.h | 37 #define DRM_FORMAT_P010 fourcc_code('P', '0', '1', '0') 41 #define DRM_FORMAT_Y0L2 fourcc_code('Y', '0', 'L', '2') 45 #define DRM_FORMAT_P210 fourcc_code('P', '2', '1', '0') 49 #define DRM_FORMAT_Y210 fourcc_code('Y', '2', '1', '0') 53 #define DRM_FORMAT_Y410 fourcc_code('Y', '4', '1', '0') 57 #define DRM_FORMAT_YUV420_8BIT fourcc_code('Y', 'U', '0', '8') 61 #define DRM_FORMAT_YUV420_10BIT fourcc_code('Y', 'U', '1', '0') 65 #define DRM_FORMAT_ABGR16161616F fourcc_code('A', 'B', '4', 'H') 69 #define DRM_FORMAT_R16 fourcc_code('R', '1', '6', ' ')
|
/hardware/google/gfxstream/guest/vulkan_enc/ |
D | AndroidHardwareBuffer.cpp | 19 #define DRM_FORMAT_YVU420_ANDROID fourcc_code('9', '9', '9', '7') 20 #define DRM_FORMAT_D16_UNORM fourcc_code('9', '9', '9', '6') 21 #define DRM_FORMAT_D24_UNORM fourcc_code('9', '9', '9', '5') 22 #define DRM_FORMAT_D24_UNORM_S8_UINT fourcc_code('9', '9', '9', '4') 23 #define DRM_FORMAT_D32_FLOAT fourcc_code('9', '9', '9', '3') 24 #define DRM_FORMAT_D32_FLOAT_S8_UINT fourcc_code('9', '9', '9', '2') 25 #define DRM_FORMAT_S8_UINT fourcc_code('9', '9', '9', '1')
|
D | vk_format_info.h | 31 #define DRM_FORMAT_YVU420_ANDROID fourcc_code('9', '9', '9', '7')
|
/hardware/qcom/sm7250/display/sde-drm/ |
D | drm_utils.cpp | 84 formats->push_back(std::make_pair(fourcc_code(final_format_str.at(0), final_format_str.at(1), in ParseFormats()
|
D | drm_crtc.cpp | 504 std::make_pair(fourcc_code(format[0], format[1], format[2], format[3]), modifier); in ParseCompRatio()
|
/hardware/google/gfxstream/guest/android/ |
D | GrallocEmulated.cpp | 29 #define DRM_FORMAT_R8_BLOB fourcc_code('9', '9', '9', '9')
|
/hardware/google/graphics/common/libhwc2.1/libhwchelper/ |
D | ExynosHWCHelper.h | 57 #define DRM_FORMAT_YUV420_8BIT fourcc_code('Y', 'U', '0', '8') 60 #define DRM_FORMAT_YUV420_10BIT fourcc_code('Y', 'U', '1', '0')
|