Running the presubmit.sh script will apply our rules to every file in the repo. Exclude gbm.h from the formatting requirements since this file was taken from other open-source projects, and diffing will be easier without our formatting rules. In addition, special case drivers where the order of includes matters. BUG=none TEST=Verified the following commands succeed: emerge-cyan minigbm/arc-cros-gralloc emerge-oak minigbm/arc-cros-gralloc emerge-veyron_minnie-cheets minigbm/arc-cros-gralloc emerge-peach_pi minigbm emerge-nyan_big minigbm emerge-jadeite minigbm Change-Id: I6ce93fb1930da254d13d5017766c17341870ccc9 Reviewed-on: https://chromium-review.googlesource.com/447319 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
36 lines
885 B
C++
36 lines
885 B
C++
/*
|
|
* Copyright 2016 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef CROS_GRALLOC_HANDLE_H
|
|
#define CROS_GRALLOC_HANDLE_H
|
|
|
|
#include <cstdint>
|
|
#include <cutils/native_handle.h>
|
|
|
|
#define DRV_MAX_PLANES 4
|
|
|
|
/*
|
|
* Only use 32-bit integers in the handle. This guarantees that the handle is
|
|
* densely packed (i.e, the compiler does not insert any padding).
|
|
*/
|
|
|
|
struct cros_gralloc_handle {
|
|
native_handle_t base;
|
|
int32_t fds[DRV_MAX_PLANES];
|
|
uint32_t strides[DRV_MAX_PLANES];
|
|
uint32_t offsets[DRV_MAX_PLANES];
|
|
uint32_t sizes[DRV_MAX_PLANES];
|
|
uint32_t format_modifiers[2 * DRV_MAX_PLANES];
|
|
uint32_t width;
|
|
uint32_t height;
|
|
uint32_t format; /* DRM format */
|
|
uint32_t magic;
|
|
uint32_t pixel_stride;
|
|
int32_t droid_format;
|
|
int32_t usage; /* Android usage. */
|
|
};
|
|
|
|
#endif
|