Skip to content

Commit 8117c66

Browse files
committed
Merge branch 'master' of https://github.com/google/angle
2 parents c33bdef + db49bc7 commit 8117c66

File tree

2,530 files changed

+532268
-171321
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,530 files changed

+532268
-171321
lines changed

.clang-format

+26-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,26 @@ IndentWidth: 4
1313
ColumnLimit: 100
1414

1515
# Always break before braces
16-
BreakBeforeBraces: Allman
16+
BreakBeforeBraces: Custom
17+
BraceWrapping:
18+
# TODO(lujc) wait for clang-format-9 support in Chromium tools
19+
# AfterCaseLabel: true
20+
AfterClass: true
21+
AfterControlStatement: true
22+
AfterEnum: true
23+
AfterFunction: true
24+
AfterNamespace: true
25+
AfterStruct: true
26+
AfterUnion: true
27+
BeforeCatch: true
28+
BeforeElse: true
29+
IndentBraces: false
30+
SplitEmptyFunction: false
31+
SplitEmptyRecord: false
32+
SplitEmptyNamespace: false
33+
34+
# Keeps extern "C" blocks unindented.
35+
AfterExternBlock: false
1736

1837
# Indent case labels.
1938
IndentCaseLabels: true
@@ -33,3 +52,9 @@ AllowShortCaseLabelsOnASingleLine: false
3352

3453
# Useful for spacing out functions in classes
3554
KeepEmptyLinesAtTheStartOfBlocks: true
55+
56+
# Indent nested PP directives.
57+
IndentPPDirectives: AfterHash
58+
59+
# Include blocks style
60+
IncludeBlocks: Preserve

.gitattributes

+17-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
1-
* text=auto
2-
*.sln eol=crlf
3-
*.vcxproj eol=crlf
4-
*.vcxproj.filters eol=crlf
5-
*.bat eol=crlf
6-
*.rc eol=crlf
7-
**/compiled/*.h eol=crlf
8-
*.sh eol=lf
9-
*.gn eol=lf
1+
* text=auto
2+
*.sln eol=crlf
3+
*.vcxproj eol=crlf
4+
*.vcxproj.filters eol=crlf
5+
*.bat eol=crlf
6+
*.rc eol=crlf
7+
**/compiled/*.h eol=crlf
8+
**/shaders/gen/*.inc eol=lf
9+
*.sh eol=lf
10+
*.gn eol=lf
11+
*.gni eol=lf
12+
src/compiler/preprocessor/preprocessor_*.* eol=lf
13+
src/compiler/translator/glslang_*.* eol=lf
14+
15+
# Git conflict markers in the json file break the code generator.
16+
# Using a binary merge strategy forces conflicts without changing file contents.
17+
scripts/code_generation_hashes/*.json merge=binary

.gitignore

+33-7
Original file line numberDiff line numberDiff line change
@@ -14,31 +14,59 @@
1414
*.TMP
1515
*.VC.db
1616
*.VC.opendb
17+
*.vcproj
1718
*.vcxproj
1819
*.vcxproj.filters
1920
*.vcxproj.user
2021
*.vsp
2122
*~
23+
.*.sw*
24+
.sw*
25+
.cipd
2226
.gclient
2327
.gclient_entries
28+
.git_cl_description_backup
2429
/src/tests/third_party/gles_conformance_tests
2530
/testing
31+
/third_party/android_ndk
32+
/third_party/catapult
2633
/third_party/cherry
27-
/third_party/deqp/src
34+
/third_party/fuchsia-sdk
2835
/third_party/gles1_conform
36+
/third_party/glmark2/src
2937
/third_party/glslang/src
30-
/third_party/googletest/src
31-
/third_party/gyp
38+
/third_party/googletest
39+
/third_party/jsoncpp
40+
/third_party/libjpeg_turbo
3241
/third_party/libpng/src
3342
/third_party/llvm-build
43+
/third_party/Python-Markdown
44+
/third_party/qemu-linux-x64
45+
/third_party/qemu-mac-x64
46+
/third_party/rapidjson/src
47+
/third_party/spirv-cross/src
3448
/third_party/spirv-headers/src
3549
/third_party/spirv-tools/src
50+
/third_party/SwiftShader
51+
/third_party/VK-GL-CTS/src
3652
/third_party/vulkan-headers/src
3753
/third_party/vulkan-loader/src
3854
/third_party/vulkan-tools/src
3955
/third_party/vulkan-validation-layers/src
56+
/third_party/yasm
4057
/third_party/zlib
41-
angle_internal
58+
/tools/clang
59+
/tools/flex-bison/linux/bison
60+
/tools/flex-bison/linux/flex
61+
/tools/flex-bison/windows/bison.exe
62+
/tools/flex-bison/windows/flex.exe
63+
/tools/flex-bison/windows/m4.exe
64+
/tools/flex-bison/windows/msys*.dll
65+
/tools/glslang/glslang_validator
66+
/tools/glslang/glslang_validator.exe
67+
/tools/md_browser
68+
/tools/memory
69+
angle_debug.txt
4270
build
4371
buildtools/
4472
debug.txt
@@ -49,13 +77,11 @@ Debug_x64/
4977
diag.txt
5078
ipch
5179
lib/*
52-
Makefile
5380
out
5481
patches-*
5582
Release/
5683
Release_ARM/
5784
Release_Win32/
5885
Release_x64/
5986
TestResults.qpa
60-
tools/clang
61-
tools/gyp
87+
.idea/

.gn

+6-10
Original file line numberDiff line numberDiff line change
@@ -7,38 +7,34 @@
77
# As a result this file will only affect stand-alone ANGLE builds,
88
# not chromium builds.
99

10-
import("//dotfile_settings.gni")
1110
import("//build/dotfile_settings.gni")
11+
import("//dotfile_settings.gni")
1212

1313
# Location of the build configuration file.
1414
buildconfig = "//build/config/BUILDCONFIG.gn"
1515

16-
# The secondary source root is a parallel directory tree where
17-
# GN build files are placed when they can not be placed directly
18-
# in the source tree, e.g. for third party source trees.
19-
secondary_source = "//build/secondary/"
20-
2116
# These are the targets to check headers for by default. The files in targets
2217
# matching these patterns (see "gn help label_pattern" for format) will have
2318
# their includes checked for proper dependencies when you run either
2419
# "gn check" or "gn gen --check".
25-
check_targets = []
20+
check_targets = [ "*" ]
2621

2722
# These are the list of GN files that run exec_script. This whitelist exists
2823
# to force additional review for new uses of exec_script, which is strongly
2924
# discouraged except for gypi_to_gn calls.
3025
exec_script_whitelist = angle_dotfile_settings.exec_script_whitelist +
31-
build_dotfile_settings.exec_script_whitelist + [
26+
build_dotfile_settings.exec_script_whitelist +
27+
[
3228
"//build/config/sysroot.gni",
3329
"//build/config/win/BUILD.gn",
3430
"//build/config/win/visual_studio_version.gni",
3531
"//build/gn_helpers.py",
36-
"//build/gypi_to_gn.py",
32+
"//build_overrides/build.gni",
3733
]
3834

3935
default_args = {
4036
use_custom_libcxx = false
41-
clang_use_chrome_plugins = false
37+
clang_use_chrome_plugins = true
4238
build_angle_deqp_tests = true
4339
use_sysroot = true
4440
}

.style.yapf

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[style]
2+
based_on_style = chromium
3+
column_limit = 99
4+
indent_width = 4

.yapfignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
scripts/export_targets.py

AUTHORS

+12
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ The Qt Company Ltd.
2929
Advanced Micro Devices, Inc.
3030
LG Electronics, Inc.
3131
IBM Inc.
32+
AdaptVis GmbH
33+
Samsung Electronics, Inc.
34+
Arm Ltd.
35+
Broadcom Inc.
3236

3337
Jacek Caban
3438
Mark Callow
@@ -51,3 +55,11 @@ Nickolay Artamonov
5155
Ihsan Akmal
5256
Andrei Volykhin
5357
Jérôme Duval
58+
Руслан Ижбулатов
59+
Thomas Miller
60+
Till Rathmann
61+
Nick Shaforostov
62+
Jaime Bernardo
63+
Le Hoang Quyen
64+
Ethan Lee
65+
Renaud Lepage

AndroidManifest.xml

-20
This file was deleted.

0 commit comments

Comments
 (0)