-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,150 changed files
with
10,703 additions
and
11,930 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Copyright 2024 The Khronos Group Inc. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
--- | ||
# Use defaults from the Google style with the following exceptions: | ||
Language: Cpp | ||
BasedOnStyle: Google | ||
IndentWidth: 4 | ||
IndentCaseLabels: false | ||
AccessModifierOffset: -2 | ||
ColumnLimit: 132 | ||
SortIncludes: false | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright 2024 The Khronos Group Inc. | ||
# Copyright 2024 RasterGrid Kft. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
name: Formatting | ||
|
||
on: | ||
# Trigger the workflow on a pull request, | ||
pull_request: | ||
|
||
push: | ||
# And on pushes to main, which will occur when a PR is merged. | ||
branches: | ||
- main | ||
# Also trigger on push of release tags to any branch. Useful | ||
# for testing release builds before merging to main. | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+' | ||
- 'v[0-9]+.[0-9]+.[0-9]+-*' | ||
paths-ignore: | ||
- .appveyor.yml | ||
- .travis.yml | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
clang-format: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run clang-format | ||
uses: HorstBaerbel/[email protected] | ||
|
||
clang-tidy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run clang-tidy | ||
uses: HorstBaerbel/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.