Searched refs:fourcc_mod_code (Results 1 – 1 of 1) sorted by relevance
/bionic/libc/kernel/uapi/drm/ |
D | drm_fourcc.h | 140 #define fourcc_mod_code(vendor,val) ((((__u64) DRM_FORMAT_MOD_VENDOR_ ##vendor) << 56) | ((val) & 0… macro 141 #define DRM_FORMAT_MOD_INVALID fourcc_mod_code(NONE, DRM_FORMAT_RESERVED) 142 #define DRM_FORMAT_MOD_LINEAR fourcc_mod_code(NONE, 0) 143 #define I915_FORMAT_MOD_X_TILED fourcc_mod_code(INTEL, 1) 144 #define I915_FORMAT_MOD_Y_TILED fourcc_mod_code(INTEL, 2) 145 #define I915_FORMAT_MOD_Yf_TILED fourcc_mod_code(INTEL, 3) 146 #define I915_FORMAT_MOD_Y_TILED_CCS fourcc_mod_code(INTEL, 4) 147 #define I915_FORMAT_MOD_Yf_TILED_CCS fourcc_mod_code(INTEL, 5) 148 #define DRM_FORMAT_MOD_SAMSUNG_64_32_TILE fourcc_mod_code(SAMSUNG, 1) 149 #define DRM_FORMAT_MOD_SAMSUNG_16_16_TILE fourcc_mod_code(SAMSUNG, 2) [all …]
|