Taken from libdrm. Mainly so we can have local header for development purposes. BUG=b:153111783,b:155511259 TEST=Protected playback works w/ associated Chrome OS changes Change-Id: I947ab11d5fbc0c2b62dbaf8806e7897d2df79621 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/minigbm/+/2459530 Reviewed-by: Jeffrey Kardatzke <jkardatzke@google.com> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Jeffrey Kardatzke <jkardatzke@google.com> Commit-Queue: Gurchetan Singh <gurchetansingh@chromium.org>
10 lines
398 B
Bash
Executable file
10 lines
398 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright 2017 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.
|
|
find \
|
|
'(' -name '*.[ch]' -or -name '*.cc' ')' \
|
|
-not -name 'virtgpu_drm.h' -not -name 'i915_drm.h' \
|
|
-not -name 'gbm.h' -not -name 'virgl_hw.h' \
|
|
-not -name 'virgl_protocol.h' \
|
|
-exec clang-format -style=file -i {} +
|