Lines Matching refs:height

20 IonBuffer::IonBuffer(uint32_t width, uint32_t height, uint32_t format,
23 Alloc(width, height, kDefaultGraphicBufferLayerCount, format, usage);
26 IonBuffer::IonBuffer(buffer_handle_t handle, uint32_t width, uint32_t height,
28 : IonBuffer(handle, width, height, kDefaultGraphicBufferLayerCount, stride,
31 IonBuffer::IonBuffer(buffer_handle_t handle, uint32_t width, uint32_t height,
36 "IonBuffer::IonBuffer: handle=%p width=%u height=%u layer_count=%u "
38 handle, width, height, layer_count, stride, format, usage);
40 Import(handle, width, height, layer_count, stride, format, usage);
46 "IonBuffer::~IonBuffer: handle=%p width=%u height=%u stride=%u "
48 handle(), width(), height(), stride(), format(), usage());
74 int IonBuffer::Alloc(uint32_t width, uint32_t height, uint32_t layer_count,
77 "IonBuffer::Alloc: width=%u height=%u layer_count=%u format=%u "
78 "usage=%" PRIx64, width, height, layer_count, format, usage);
81 new GraphicBuffer(width, height, format, layer_count, usage);
91 void IonBuffer::Reset(buffer_handle_t handle, uint32_t width, uint32_t height,
95 "IonBuffer::Reset: handle=%p width=%u height=%u layer_count=%u "
97 handle, width, height, layer_count, stride, format, usage);
98 Import(handle, width, height, layer_count, stride, format, usage);
101 int IonBuffer::Import(buffer_handle_t handle, uint32_t width, uint32_t height,
106 "IonBuffer::Import: handle=%p width=%u height=%u layer_count=%u "
108 handle, width, height, layer_count, stride, format, usage);
112 height, format, layer_count, usage, stride);
123 int int_count, uint32_t width, uint32_t height,
128 "IonBuffer::Import: fd_count=%d int_count=%d width=%u height=%u "
130 fd_count, int_count, width, height, layer_count, stride, format,
150 Import(handle, width, height, layer_count, stride, format, usage);
186 Import(handle, other->width(), other->height(), other->layer_count(),
198 int IonBuffer::Lock(uint32_t usage, int x, int y, int width, int height,
202 "IonBuffer::Lock: handle=%p usage=%d x=%d y=%d width=%d height=%d "
204 handle(), usage, x, y, width, height, address);
207 buffer_->lock(usage, Rect(x, y, x + width, y + height), address);
214 int IonBuffer::LockYUV(uint32_t usage, int x, int y, int width, int height,
218 "IonBuffer::Lock: handle=%p usage=%d x=%d y=%d width=%d height=%d",
219 handle(), usage, x, y, width, height);
222 buffer_->lockYCbCr(usage, Rect(x, y, x + width, y + height), yuv);