Lines Matching refs:descriptor
84 BufferDescriptorInfo descriptor; in allocateImpl() local
85 if (!decodeBufferDescriptorInfo(rawDescriptor, &descriptor)) { in allocateImpl()
89 if (!descriptor.width) { RETURN_ERROR(Error3::UNSUPPORTED); } in allocateImpl()
90 if (!descriptor.height) { RETURN_ERROR(Error3::UNSUPPORTED); } in allocateImpl()
91 if (descriptor.layerCount != 1) { RETURN_ERROR(Error3::UNSUPPORTED); } in allocateImpl()
93 const uint32_t usage = descriptor.usage; in allocateImpl()
108 Error3 e = getBufferFormat(descriptor.format, usage, &format); in allocateImpl()
111 __func__, __LINE__, descriptor.format, usage); in allocateImpl()
204 __func__, __LINE__, format, descriptor.format, usage); in allocateImpl()
209 const uint32_t width = descriptor.width; in allocateImpl()
210 const uint32_t height = descriptor.height; in allocateImpl()