Lines Matching defs:height
99 static uint32_t AdjustStrideFromFormat(uint32_t format, uint32_t height)
101 uint32_t tmpHeight = height;
109 tmpHeight = DIV_ROUND_UP((height * sum), fmtInfo->planes->radio[0]);
111 DISPLAY_LOGD("height adjust to : %{public}d", tmpHeight);
116 struct gbm_bo *HdiGbmBoCreate(struct gbm_device *gbm, uint32_t width, uint32_t height, uint32_t format,
130 bo->height = height;
134 dumb.height = ALIGN_UP(AdjustStrideFromFormat(format, height), HEIGHT_ALIGN);
139 DISPLAY_LOGD("fmt 0x%{public}x create dumb width: %{public}d height: %{public}d bpp: %{public}u pitch"
141 format, dumb.width, dumb.height, dumb.bpp, dumb.pitch, dumb.size);
145 "fmt 0x%{public}x create dumb width: %{public}d height: %{public}d stride %{public}d size %{public}u", format,
146 bo->width, bo->height, bo->stride, bo->size);
178 return bo->height;