Lines Matching refs:descriptor
96 BufferDescriptorInfo descriptor; in allocateImpl() local
97 if (!decodeBufferDescriptorInfo(rawDescriptor, &descriptor)) { in allocateImpl()
101 if (!descriptor.width) { RETURN_ERROR(Error3::UNSUPPORTED); } in allocateImpl()
102 if (!descriptor.height) { RETURN_ERROR(Error3::UNSUPPORTED); } in allocateImpl()
103 if (descriptor.layerCount != 1) { RETURN_ERROR(Error3::UNSUPPORTED); } in allocateImpl()
105 const uint32_t usage = descriptor.usage; in allocateImpl()
116 Error3 e = getBufferFormat(descriptor.format, usage, &format); in allocateImpl()
119 __func__, __LINE__, descriptor.format, usage); in allocateImpl()
211 __func__, __LINE__, format, descriptor.format, usage); in allocateImpl()
215 const uint32_t width = descriptor.width; in allocateImpl()
216 const uint32_t height = descriptor.height; in allocateImpl()