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>
32 lines
545 B
C
32 lines
545 B
C
/*
|
|
* Copyright 2014 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 GBM_PRIV_H
|
|
#define GBM_PRIV_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "drv.h"
|
|
#include "gbm.h"
|
|
|
|
struct gbm_device {
|
|
struct driver *drv;
|
|
};
|
|
|
|
struct gbm_surface {
|
|
};
|
|
|
|
struct gbm_bo {
|
|
struct gbm_device *gbm;
|
|
struct bo *bo;
|
|
uint32_t gbm_format;
|
|
void *user_data;
|
|
void (*destroy_user_data)(struct gbm_bo *, void *);
|
|
};
|
|
|
|
#endif
|