1 /* 2 * Copyright 2017 The Chromium OS Authors. All rights reserved. 3 * Use of this source code is governed by a BSD-style license that can be 4 * found in the LICENSE file. 5 */ 6 7 #ifndef CROS_GRALLOC_TYPES_H 8 #define CROS_GRALLOC_TYPES_H 9 10 struct cros_gralloc_buffer_descriptor { 11 uint32_t width; 12 uint32_t height; 13 uint32_t consumer_usage; 14 uint32_t producer_usage; 15 uint32_t droid_format; 16 uint32_t drm_format; 17 uint64_t use_flags; 18 }; 19 20 #endif 21