Lines Matching refs:img
547 void dumpExynosImage(uint32_t type, exynos_image &img) in dumpExynosImage() argument
553 dumpExynosImage(result, img); in dumpExynosImage()
558 void dumpExynosImage(String8& result, const exynos_image& img) { in dumpExynosImage() argument
561 img.bufferHandle, img.fullWidth, img.fullHeight, img.x, img.y, img.w, img.h, in dumpExynosImage()
562 getFormatStr(img.format, img.compressionInfo.type).c_str()); in dumpExynosImage()
564 img.usageFlags, img.layerFlags, img.acquireFenceFd, img.releaseFenceFd); in dumpExynosImage()
566 img.dataSpace, img.blending, img.transform, in dumpExynosImage()
567 getCompressionStr(img.compressionInfo).c_str()); in dumpExynosImage()
568 if (img.bufferHandle != NULL) { in dumpExynosImage()
569 VendorGraphicBufferMeta gmeta(img.bufferHandle); in dumpExynosImage()
620 bool hasHdrInfo(const exynos_image& img) { in hasHdrInfo() argument
621 uint32_t dataSpace = img.dataSpace; in hasHdrInfo()
641 exynos_image img; in hasHdrInfo() local
642 img.dataSpace = dataSpace; in hasHdrInfo()
643 return hasHdrInfo(img); in hasHdrInfo()
646 bool hasHdr10Plus(exynos_image &img) { in hasHdr10Plus() argument
648 return (img.metaType & VIDEO_INFO_TYPE_HDR_DYNAMIC) ? true : false; in hasHdr10Plus()