• Home
  • Raw
  • Download

Lines Matching refs:descriptor

218 unsigned int Allocator::GetSize(const BufferDescriptor &descriptor, unsigned int alignedw,  in GetSize()  argument
221 int format = descriptor.GetFormat(); in GetSize()
222 int width = descriptor.GetWidth(); in GetSize()
223 int height = descriptor.GetHeight(); in GetSize()
224 int layer_count = descriptor.GetLayerCount(); in GetSize()
225 gralloc1_producer_usage_t prod_usage = descriptor.GetProducerUsage(); in GetSize()
226 gralloc1_consumer_usage_t cons_usage = descriptor.GetConsumerUsage(); in GetSize()
316 BufferDescriptor descriptor = BufferDescriptor(width, height, format); in GetBufferSizeAndDimensions() local
317 GetAlignedWidthAndHeight(descriptor, alignedw, alignedh); in GetBufferSizeAndDimensions()
319 *size = GetSize(descriptor, *alignedw, *alignedh); in GetBufferSizeAndDimensions()
322 void Allocator::GetBufferSizeAndDimensions(const BufferDescriptor &descriptor, unsigned int *size, in GetBufferSizeAndDimensions() argument
324 GetAlignedWidthAndHeight(descriptor, alignedw, alignedh); in GetBufferSizeAndDimensions()
326 *size = GetSize(descriptor, *alignedw, *alignedh); in GetBufferSizeAndDimensions()
396 BufferDescriptor descriptor = in GetYUVPlaneInfo() local
399 GetAlignedWidthAndHeight(descriptor, &width, &height); in GetYUVPlaneInfo()
785 void Allocator::GetAlignedWidthAndHeight(const BufferDescriptor &descriptor, unsigned int *alignedw, in GetAlignedWidthAndHeight() argument
787 int width = descriptor.GetWidth(); in GetAlignedWidthAndHeight()
788 int height = descriptor.GetHeight(); in GetAlignedWidthAndHeight()
789 int format = descriptor.GetFormat(); in GetAlignedWidthAndHeight()
790 gralloc1_producer_usage_t prod_usage = descriptor.GetProducerUsage(); in GetAlignedWidthAndHeight()
791 gralloc1_consumer_usage_t cons_usage = descriptor.GetConsumerUsage(); in GetAlignedWidthAndHeight()