Lines Matching refs:use_flags
81 resolved_format = drv_resolve_format(drv_, descriptor->drm_format, descriptor->use_flags); in is_supported()
82 combo = drv_get_combination(drv_, resolved_format, descriptor->use_flags); in is_supported()
94 uint64_t use_flags; in allocate() local
99 resolved_format = drv_resolve_format(drv_, descriptor->drm_format, descriptor->use_flags); in allocate()
100 use_flags = descriptor->use_flags; in allocate()
108 use_flags |= BO_USE_LINEAR; in allocate()
110 bo = drv_bo_create(drv_, descriptor->width, descriptor->height, resolved_format, use_flags); in allocate()
147 hnd->use_flags[0] = static_cast<uint32_t>(descriptor->use_flags >> 32); in allocate()
148 hnd->use_flags[1] = static_cast<uint32_t>(descriptor->use_flags); in allocate()
197 data.use_flags = static_cast<uint64_t>(hnd->use_flags[0]) << 32; in retain()
198 data.use_flags |= hnd->use_flags[1]; in retain()