-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
external/mesa3d: add mesa3d library.
Signed-off-by: guibing <[email protected]>
- Loading branch information
0 parents
commit b46967c
Showing
8,416 changed files
with
3,819,783 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,18 @@ | ||
((nil . ((show-trailing-whitespace . t))) | ||
(prog-mode | ||
(indent-tabs-mode . nil) | ||
(tab-width . 8) | ||
(c-basic-offset . 3) | ||
(c-file-style . "stroustrup") | ||
(fill-column . 78) | ||
(eval . (progn | ||
(c-set-offset 'case-label '0) | ||
(c-set-offset 'innamespace '0) | ||
(c-set-offset 'inline-open '0))) | ||
(whitespace-style face indentation) | ||
(whitespace-line-column . 79) | ||
(eval ignore-errors | ||
(require 'whitespace) | ||
(whitespace-mode 1))) | ||
(makefile-mode (indent-tabs-mode . t)) | ||
) |
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,41 @@ | ||
# To use this config on you editor, follow the instructions at: | ||
# http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
insert_final_newline = true | ||
tab_width = 8 | ||
|
||
[*.{c,h,cpp,hpp,cc,hh}] | ||
indent_style = space | ||
indent_size = 3 | ||
max_line_length = 78 | ||
|
||
[{Makefile*,*.mk}] | ||
indent_style = tab | ||
|
||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.rst] | ||
indent_style = space | ||
indent_size = 3 | ||
|
||
[*.patch] | ||
trim_trailing_whitespace = false | ||
|
||
[{meson.build,meson_options.txt}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
|
||
[*.ps1] | ||
indent_style = space | ||
indent_size = 2 |
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,6 @@ | ||
*.csv eol=crlf | ||
* text=auto | ||
*.jpg binary | ||
*.png binary | ||
*.gif binary | ||
*.ico binary |
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 @@ | ||
name: CI | ||
on: push | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
CI: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install Dependencies | ||
run: | | ||
cat > Brewfile <<EOL | ||
brew "bison" | ||
brew "expat" | ||
brew "gettext" | ||
brew "libx11" | ||
brew "libxcb" | ||
brew "libxdamage" | ||
brew "libxext" | ||
brew "meson" | ||
brew "pkg-config" | ||
brew "[email protected]" | ||
EOL | ||
brew update | ||
brew bundle --verbose | ||
- name: Install Mako | ||
run: pip3 install --user mako | ||
- name: Configure | ||
run: meson . build -Dbuild-tests=true -Dosmesa=true | ||
- name: Build | ||
run: meson compile -C build | ||
- name: Test | ||
run: meson test -C build --print-errorlogs | ||
- name: Install | ||
run: meson install -C build |
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,4 @@ | ||
*.pyc | ||
*.pyo | ||
*.out | ||
/build |
Oops, something went wrong.