Setup dependent external sources 72/168772/2
authorHoyub Lee <hoyub.lee@samsung.com>
Wed, 19 Apr 2017 06:45:05 +0000 (15:45 +0900)
committerHoyub Lee <hoyub.lee@samsung.com>
Wed, 31 Jan 2018 04:12:13 +0000 (04:12 +0000)
commit1ca65193e2fa482f31723345264c14356030d99a
tree7164be94f3fa95bebc559272811bdf985dbe8059
parent7763f6e68b28413787c638fe5c9f1b20a5579636
Setup dependent external sources

This patch includes below 3 patches. With these patches, it sets up
dependent external sources required for building VK-GL-CTS.

============ Patch 1 ============
Getting external sources for build

Fetching sources and modify for TIZEN.
.gitignore is deleted because gbs can't export sources with it.

Change-Id: I6c5862baf1ddba9648e23319c60d903d6f279ab9
Signed-off-by: Hoyub Lee <hoyub.lee@samsung.com>
============ Patch 2 ============
Apply git commits of external sources

glslang, spirv-headers and spirv-tools have each own git on their
directories. Each git has committed changes, so this has made diff on
VK-GL-CTS git.

Change-Id: I0ad161b3c2c6056f3d0ec174a78bd8c7fa6a5a78
Signed-off-by: Hoyub Lee <hoyub.lee@samsung.com>
============ Patch 3 ============
Add glslang, spirv-tools and spirv-headers

1. Fetch source code by fetch_sources.py;
2. Remove .git files;
3. Add necessary build requirements.

Change-Id: Ib1af29b1d62935634fbc604824345f99f8b4fa37
Signed-off-by:Xuelian Bai<xuelian.bai@samsung.com>

Change-Id: I8965206bc3e1ebd575d4b9e5b66887bf41d8e5ad
Signed-off-by: Hoyub Lee <hoyub.lee@samsung.com>
2664 files changed:
external/.gitignore [deleted file]
external/glslang/.gitignore [deleted file]
external/glslang/src/.appveyor.yml [new file with mode: 0644]
external/glslang/src/.clang-format [new file with mode: 0644]
external/glslang/src/.travis.yml [new file with mode: 0644]
external/glslang/src/CMakeLists.txt [new file with mode: 0644]
external/glslang/src/ChooseMSVCCRT.cmake [new file with mode: 0644]
external/glslang/src/External/CMakeLists.txt [new file with mode: 0644]
external/glslang/src/OGLCompilersDLL/CMakeLists.txt [new file with mode: 0644]
external/glslang/src/OGLCompilersDLL/InitializeDll.cpp [new file with mode: 0644]
external/glslang/src/OGLCompilersDLL/InitializeDll.h [new file with mode: 0644]
external/glslang/src/README-spirv-remap.txt [new file with mode: 0644]
external/glslang/src/README.md [new file with mode: 0644]
external/glslang/src/SPIRV/CMakeLists.txt [new file with mode: 0755]
external/glslang/src/SPIRV/GLSL.ext.AMD.h [new file with mode: 0644]
external/glslang/src/SPIRV/GLSL.ext.KHR.h [new file with mode: 0644]
external/glslang/src/SPIRV/GLSL.ext.NV.h [new file with mode: 0644]
external/glslang/src/SPIRV/GLSL.std.450.h [new file with mode: 0755]
external/glslang/src/SPIRV/GlslangToSpv.cpp [new file with mode: 0755]
external/glslang/src/SPIRV/GlslangToSpv.h [new file with mode: 0644]
external/glslang/src/SPIRV/InReadableOrder.cpp [new file with mode: 0644]
external/glslang/src/SPIRV/Logger.cpp [new file with mode: 0644]
external/glslang/src/SPIRV/Logger.h [new file with mode: 0644]
external/glslang/src/SPIRV/SPVRemapper.cpp [new file with mode: 0755]
external/glslang/src/SPIRV/SPVRemapper.h [new file with mode: 0755]
external/glslang/src/SPIRV/SpvBuilder.cpp [new file with mode: 0644]
external/glslang/src/SPIRV/SpvBuilder.h [new file with mode: 0755]
external/glslang/src/SPIRV/bitutils.h [new file with mode: 0644]
external/glslang/src/SPIRV/disassemble.cpp [new file with mode: 0644]
external/glslang/src/SPIRV/disassemble.h [new file with mode: 0755]
external/glslang/src/SPIRV/doc.cpp [new file with mode: 0755]
external/glslang/src/SPIRV/doc.h [new file with mode: 0644]
external/glslang/src/SPIRV/hex_float.h [new file with mode: 0644]
external/glslang/src/SPIRV/spirv.hpp [new file with mode: 0755]
external/glslang/src/SPIRV/spvIR.h [new file with mode: 0755]
external/glslang/src/StandAlone/CMakeLists.txt [new file with mode: 0644]
external/glslang/src/StandAlone/ResourceLimits.cpp [new file with mode: 0644]
external/glslang/src/StandAlone/ResourceLimits.h [new file with mode: 0644]
external/glslang/src/StandAlone/StandAlone.cpp [new file with mode: 0644]
external/glslang/src/StandAlone/Worklist.h [new file with mode: 0644]
external/glslang/src/StandAlone/spirv-remap.cpp [new file with mode: 0644]
external/glslang/src/Test/100.conf [new file with mode: 0644]
external/glslang/src/Test/100.frag [new file with mode: 0644]
external/glslang/src/Test/100Limits.vert [new file with mode: 0644]
external/glslang/src/Test/100scope.vert [new file with mode: 0644]
external/glslang/src/Test/110scope.vert [new file with mode: 0644]
external/glslang/src/Test/120.frag [new file with mode: 0644]
external/glslang/src/Test/120.vert [new file with mode: 0644]
external/glslang/src/Test/130.frag [new file with mode: 0644]
external/glslang/src/Test/130.vert [new file with mode: 0644]
external/glslang/src/Test/140.frag [new file with mode: 0644]
external/glslang/src/Test/140.vert [new file with mode: 0644]
external/glslang/src/Test/150.frag [new file with mode: 0644]
external/glslang/src/Test/150.geom [new file with mode: 0644]
external/glslang/src/Test/150.tesc [new file with mode: 0644]
external/glslang/src/Test/150.tese [new file with mode: 0644]
external/glslang/src/Test/150.vert [new file with mode: 0644]
external/glslang/src/Test/300.frag [new file with mode: 0644]
external/glslang/src/Test/300.vert [new file with mode: 0644]
external/glslang/src/Test/300BuiltIns.frag [new file with mode: 0644]
external/glslang/src/Test/300block.frag [new file with mode: 0644]
external/glslang/src/Test/300layout.frag [new file with mode: 0644]
external/glslang/src/Test/300layout.vert [new file with mode: 0644]
external/glslang/src/Test/300link.frag [new file with mode: 0644]
external/glslang/src/Test/300link2.frag [new file with mode: 0644]
external/glslang/src/Test/300link3.frag [new file with mode: 0644]
external/glslang/src/Test/300operations.frag [new file with mode: 0644]
external/glslang/src/Test/300scope.vert [new file with mode: 0644]
external/glslang/src/Test/310.comp [new file with mode: 0644]
external/glslang/src/Test/310.frag [new file with mode: 0644]
external/glslang/src/Test/310.geom [new file with mode: 0644]
external/glslang/src/Test/310.tesc [new file with mode: 0644]
external/glslang/src/Test/310.tese [new file with mode: 0644]
external/glslang/src/Test/310.vert [new file with mode: 0644]
external/glslang/src/Test/310AofA.vert [new file with mode: 0644]
external/glslang/src/Test/310implicitSizeArrayError.vert [new file with mode: 0644]
external/glslang/src/Test/330.frag [new file with mode: 0644]
external/glslang/src/Test/330comp.frag [new file with mode: 0644]
external/glslang/src/Test/400.frag [new file with mode: 0644]
external/glslang/src/Test/400.geom [new file with mode: 0644]
external/glslang/src/Test/400.tesc [new file with mode: 0644]
external/glslang/src/Test/400.tese [new file with mode: 0644]
external/glslang/src/Test/400.vert [new file with mode: 0644]
external/glslang/src/Test/410.geom [new file with mode: 0644]
external/glslang/src/Test/410.tesc [new file with mode: 0644]
external/glslang/src/Test/410.vert [new file with mode: 0644]
external/glslang/src/Test/420.comp [new file with mode: 0755]
external/glslang/src/Test/420.frag [new file with mode: 0644]
external/glslang/src/Test/420.geom [new file with mode: 0644]
external/glslang/src/Test/420.tesc [new file with mode: 0644]
external/glslang/src/Test/420.tese [new file with mode: 0644]
external/glslang/src/Test/420.vert [new file with mode: 0644]
external/glslang/src/Test/420_size_gl_in.geom [new file with mode: 0644]
external/glslang/src/Test/430.comp [new file with mode: 0644]
external/glslang/src/Test/430.vert [new file with mode: 0644]
external/glslang/src/Test/430AofA.frag [new file with mode: 0644]
external/glslang/src/Test/430scope.vert [new file with mode: 0644]
external/glslang/src/Test/440.frag [new file with mode: 0644]
external/glslang/src/Test/440.vert [new file with mode: 0644]
external/glslang/src/Test/450.comp [new file with mode: 0644]
external/glslang/src/Test/450.frag [new file with mode: 0644]
external/glslang/src/Test/450.geom [new file with mode: 0644]
external/glslang/src/Test/450.tesc [new file with mode: 0644]
external/glslang/src/Test/450.tese [new file with mode: 0644]
external/glslang/src/Test/450.vert [new file with mode: 0644]
external/glslang/src/Test/Operations.frag [new file with mode: 0644]
external/glslang/src/Test/aggOps.frag [new file with mode: 0644]
external/glslang/src/Test/always-discard.frag [new file with mode: 0644]
external/glslang/src/Test/always-discard2.frag [new file with mode: 0644]
external/glslang/src/Test/array.frag [new file with mode: 0644]
external/glslang/src/Test/array100.frag [new file with mode: 0644]
external/glslang/src/Test/atomic_uint.frag [new file with mode: 0644]
external/glslang/src/Test/badChars.frag [new file with mode: 0644]
external/glslang/src/Test/badMacroArgs.frag [new file with mode: 0755]
external/glslang/src/Test/baseResults/100.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/100Limits.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/100LimitsConf.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/100scope.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/110scope.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/120.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/120.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/130.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/130.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/140.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/140.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/150.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/150.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/150.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/150.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/300.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/300.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/300BuiltIns.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/300block.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/300layout.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/300layout.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/300link.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/300link2.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/300link3.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/300operations.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/300scope.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/310.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/310.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/310.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/310.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/310.tese.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/310.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/310AofA.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/310implicitSizeArrayError.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/330.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/330comp.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/400.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/400.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/400.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/400.tese.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/400.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/410.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/410.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/410.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/420.comp.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/420.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/420.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/420.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/420.tese.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/420.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/420_size_gl_in.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/430.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/430.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/430AofA.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/430scope.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/440.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/440.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/450.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/450.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/450.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/450.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/450.tese.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/450.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/Operations.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/aggOps.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/always-discard.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/always-discard2.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/array.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/array100.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/atomic_uint.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/badChars.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/badMacroArgs.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/comment.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/conditionalDiscard.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/constErrors.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/constFold.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/conversion.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/cppBad.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/cppBad2.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/cppComplexExpr.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/cppIndent.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/cppNest.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/cppSimple.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/dataOut.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/dataOutIndirect.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/dce.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/decls.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/deepRvalue.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/depthOut.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/discard-dce.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/doWhileLoop.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/earlyReturnDiscard.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/empty.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/errors.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/es-link1.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/flowControl.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/forLoop.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/forwardRef.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/functionCall.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/functionSemantics.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/glspv.esversion.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/glspv.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/glspv.version.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/glspv.version.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/glspv.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.amend.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.array.flatten.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.array.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.array.implicit-size.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.array.multidim.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.assoc.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.attribute.expression.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.attribute.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.automap.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.basic.comp.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.basic.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.boolConv.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.buffer.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.calculatelod.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.calculatelodunclamped.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.cast.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.charLit.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.clip.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.comparison.vec.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.conditional.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.constantbuffer.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.constructexpr.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.deadFunctionMissingBody.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.depthGreater.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.depthLess.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.discard.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.doLoop.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.domain.1.tese.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.domain.2.tese.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.domain.3.tese.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.emptystruct.init.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.emptystructreturn.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.emptystructreturn.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.entry-in.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.entry-out.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.entry.rename.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.flatten.return.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.float1.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.float4.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.forLoop.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.gather.array.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.gather.basic.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.gather.basic.dx10.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.gather.offset.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.gather.offsetarray.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.gatherRGBA.array.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.gatherRGBA.basic.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.gatherRGBA.offset.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.gatherRGBA.offsetarray.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.gathercmpRGBA.offset.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.getdimensions.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.getdimensions.dx10.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.getdimensions.rw.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.getsampleposition.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.hlslOffset.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.hull.1.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.hull.2.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.hull.ctrlpt-1.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.hull.ctrlpt-2.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.hull.void.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.identifier.sample.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.if.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.implicitBool.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.inf.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.init.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.init2.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.inoutquals.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsic.frexp.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsic.frexp.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.barriers.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.d3dcolortoubyte4.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.double.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.evalfns.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.f1632.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.f3216.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.lit.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.negative.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.negative.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.negative.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.promote.down.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.promote.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.promote.outputs.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.intrinsics.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.isfinite.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.layout.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.load.2dms.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.load.array.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.load.basic.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.load.basic.dx10.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.load.buffer.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.load.buffer.float.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.load.offset.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.load.offsetarray.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.load.rwbuffer.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.load.rwtexture.array.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.load.rwtexture.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.logical.binary.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.logical.binary.vec.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.logical.unary.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.logicalConvert.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.loopattr.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.matNx1.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.matType.bool.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.matType.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.matType.int.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.matrixSwizzle.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.matrixindex.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.max.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.mintypes.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.multiEntry.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.multiReturn.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.namespace.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.nonint-index.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.nonstaticMemberFunction.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.numericsuffixes.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.numthreads.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.overload.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.params.default.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.params.default.negative.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.partialInit.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.pp.line.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.precedence.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.precedence2.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.precise.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.promote.atomic.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.promote.binary.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.promote.vec1.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.promotions.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.reflection.binding.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.reflection.binding.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.reflection.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.rw.atomics.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.rw.bracket.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.rw.register.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.rw.scalar.bracket.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.rw.swizzle.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.rw.vec2.bracket.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.sample.array.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.sample.basic.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.sample.offset.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.sample.offsetarray.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.sample.sub-vec4.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplebias.array.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplebias.basic.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplebias.offset.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplebias.offsetarray.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplecmp.array.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplecmp.basic.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplecmp.negative.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplecmp.negative2.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplecmp.offset.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplecmp.offsetarray.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplecmplevelzero.array.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplecmplevelzero.basic.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplecmplevelzero.offset.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplecmplevelzero.offsetarray.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplegrad.array.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplegrad.basic.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplegrad.basic.dx10.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplegrad.offset.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplegrad.offsetarray.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplelevel.array.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplelevel.basic.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplelevel.basic.dx10.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplelevel.offset.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.samplelevel.offsetarray.dx10.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.scalar-length.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.scalarCast.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.scope.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.semantic.geom.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.semantic.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.semicolons.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.shapeConv.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.shapeConvRet.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.sin.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.staticMemberFunction.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.string.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.stringtoken.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.struct.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.struct.split-1.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.struct.split.array.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.struct.split.assign.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.struct.split.call.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.struct.split.nested.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.struct.split.trivial.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.struct.split.trivial.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structIoFourWay.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.structStructName.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.structarray.flatten.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structarray.flatten.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structbuffer.append.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structbuffer.atomics.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structbuffer.byte.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structbuffer.coherent.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structbuffer.floatidx.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structbuffer.fn.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structbuffer.fn2.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structbuffer.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structbuffer.incdec.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structbuffer.rw.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structbuffer.rwbyte.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.structin.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.switch.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.swizzle.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.templatetypes.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.this.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.tx.bracket.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.type.half.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.type.identifier.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/hlsl.typeGraphCopy.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.typedef.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.void.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/hlsl.whileLoop.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/length.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/lineContinuation.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/lineContinuation100.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/link1.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/link1.vk.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/localAggregates.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/loops.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/loopsArtificial.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/mains1.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/matrix.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/matrix2.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/matrixError.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/maxClipDistances.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/max_vertices_0.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/missingBodies.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/negativeArraySize.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/newTexture.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/noMain.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/nonSquare.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/nonVulkan.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/nosuffix.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/numeral.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/pointCoord.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/precise.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/precise_struct_block.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/precision.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/precision.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/prepost.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.cpp_style___FILE__.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.cpp_style___FILE__.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.cpp_style_line_directive.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.cpp_style_line_directive.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.defined.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.defined.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.edge_cases.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.edge_cases.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.eof_missing.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.eof_missing.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.errors.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.errors.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.extensions.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.extensions.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.function_macro.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.function_macro.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.include.disabled.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.include.disabled.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.include.enabled.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.include.enabled.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.line.frag.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.line.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.line.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.line.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.many.endif.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.many.endif.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.pragma.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.pragma.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.simple.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.simple.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.success_if_parse_would_fail.vert.err [new file with mode: 0644]
external/glslang/src/Test/baseResults/preprocessor.success_if_parse_would_fail.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/recurse1.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/reflection.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.basic.dcefunc.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.basic.dcevartype.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.basic.everything.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.basic.none.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.basic.strip.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.hlsl.sample.basic.everything.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.hlsl.sample.basic.none.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.hlsl.sample.basic.strip.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.hlsl.templatetypes.everything.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.hlsl.templatetypes.none.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.if.everything.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.if.none.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.literal64.everything.spv.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.literal64.none.spv.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.similar_1a.everything.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.similar_1a.none.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.similar_1b.everything.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.similar_1b.none.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.switch.everything.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.switch.none.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.uniformarray.everything.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/remap.uniformarray.none.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/sample.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/sample.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/simpleFunctionCall.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/specExamples.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/specExamples.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.100ops.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.130.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.140.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.150.geom.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.150.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.300BuiltIns.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.300layout.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.300layout.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.300layoutp.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.310.bitcast.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.310.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.330.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.400.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.400.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.400.tese.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.420.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.430.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.430.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.450.geom.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.450.noRedecl.tesc.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.450.tesc.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.AofA.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.GeometryShaderPassthrough.geom.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.Operations.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.accessChain.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.aggOps.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.always-discard.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.always-discard2.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.atomic.comp.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.bitCast.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.bool.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.boolInBlock.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.branch-return.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.buffer.autoassign.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.conditionalDiscard.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.conversion.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.dataOut.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.dataOutIndirect.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.dataOutIndirect.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.deepRvalue.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.depthOut.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.deviceGroup.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.discard-dce.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.do-simple.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.do-while-continue-break.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.doWhileLoop.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.double.comp.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.drawParams.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.earlyReturnDiscard.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.float16.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.flowControl.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.for-complex-condition.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.for-continue-break.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.for-nobody.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.for-notest.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.for-simple.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.forLoop.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.forwardFun.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.functionCall.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.functionNestedOpaque.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.functionSemantics.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.glFragColor.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.glsl.register.autoassign.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.glsl.register.noautoassign.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.hlslOffsets.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.image.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.image.load-formatted.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.int64.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.intOps.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.interpOps.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.layoutNested.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.length.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.localAggregates.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.loops.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.loopsArtificial.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.matFun.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.matrix.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.matrix2.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.memoryQualifier.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.merge-unreachable.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.multiStruct.comp.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.multiStructFuncall.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.multiView.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.multiviewPerViewAttributes.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.multiviewPerViewAttributes.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.newTexture.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.noDeadDecorations.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.noWorkgroup.comp.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.nonSquare.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.offsets.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.precise.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.precise.tese.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.precision.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.prepost.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.pushConstant.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.pushConstantAnon.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.qualifiers.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.queryL.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.register.autoassign-2.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.register.autoassign.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.register.autoassign.rangetest.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.register.noautoassign.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.rw.autoassign.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.sampleMaskOverrideCoverage.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.separate.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.set.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.shaderBallot.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.shaderBallotAMD.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.shaderDrawParams.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.shaderGroupVote.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.shiftOps.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.shortCircuit.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.simpleFunctionCall.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.simpleMat.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.sparseTexture.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.sparseTextureClamp.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.specConst.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.specConstant.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.specConstant.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.specConstantComposite.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.specConstantOperations.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.ssbo.autoassign.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.stereoViewRendering.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.stereoViewRendering.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.storageBuffer.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.structAssignment.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.structDeref.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.structure.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.subpass.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.switch.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.swizzle.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.swizzleInversion.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.test.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.test.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.texture.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.texture.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.types.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.uint.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.uniformArray.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.variableArrayIndex.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.varyingArray.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.varyingArrayIndirect.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.viewportArray2.tesc.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.viewportArray2.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.voidFunction.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.while-continue-break.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/spv.while-simple.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/spv.whileLoop.frag.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/structAssignment.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/structDeref.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/structure.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/switch.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/swizzle.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/syntaxError.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/test.conf [new file with mode: 0644]
external/glslang/src/Test/baseResults/test.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/texture.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/tokenLength.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/tokenPaste.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/types.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/uint.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/uniformArray.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/variableArrayIndex.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/varyingArray.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/varyingArrayIndirect.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/versionsClean.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/versionsClean.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/versionsErrors.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/versionsErrors.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/voidFunction.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/vulkan.ast.vert.out [new file with mode: 0755]
external/glslang/src/Test/baseResults/vulkan.comp.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/vulkan.frag.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/vulkan.vert.out [new file with mode: 0644]
external/glslang/src/Test/baseResults/whileLoop.frag.out [new file with mode: 0644]
external/glslang/src/Test/bump [new file with mode: 0755]
external/glslang/src/Test/comment.frag [new file with mode: 0644]
external/glslang/src/Test/conditionalDiscard.frag [new file with mode: 0644]
external/glslang/src/Test/constErrors.frag [new file with mode: 0644]
external/glslang/src/Test/constFold.frag [new file with mode: 0644]
external/glslang/src/Test/conversion.frag [new file with mode: 0644]
external/glslang/src/Test/cppBad.vert [new file with mode: 0644]
external/glslang/src/Test/cppBad2.vert [new file with mode: 0755]
external/glslang/src/Test/cppComplexExpr.vert [new file with mode: 0644]
external/glslang/src/Test/cppIndent.vert [new file with mode: 0644]
external/glslang/src/Test/cppNest.vert [new file with mode: 0644]
external/glslang/src/Test/cppSimple.vert [new file with mode: 0644]
external/glslang/src/Test/dataOut.frag [new file with mode: 0644]
external/glslang/src/Test/dataOutIndirect.frag [new file with mode: 0644]
external/glslang/src/Test/dce.frag [new file with mode: 0644]
external/glslang/src/Test/decls.frag [new file with mode: 0644]
external/glslang/src/Test/deepRvalue.frag [new file with mode: 0644]
external/glslang/src/Test/depthOut.frag [new file with mode: 0644]
external/glslang/src/Test/discard-dce.frag [new file with mode: 0644]
external/glslang/src/Test/doWhileLoop.frag [new file with mode: 0644]
external/glslang/src/Test/earlyReturnDiscard.frag [new file with mode: 0644]
external/glslang/src/Test/empty.frag [new file with mode: 0644]
external/glslang/src/Test/empty2.frag [new file with mode: 0644]
external/glslang/src/Test/empty3.frag [new file with mode: 0644]
external/glslang/src/Test/errors.frag [new file with mode: 0644]
external/glslang/src/Test/es-link1.frag [new file with mode: 0644]
external/glslang/src/Test/es-link2.frag [new file with mode: 0644]
external/glslang/src/Test/flowControl.frag [new file with mode: 0644]
external/glslang/src/Test/forLoop.frag [new file with mode: 0644]
external/glslang/src/Test/forwardRef.frag [new file with mode: 0644]
external/glslang/src/Test/functionCall.frag [new file with mode: 0644]
external/glslang/src/Test/functionSemantics.frag [new file with mode: 0644]
external/glslang/src/Test/glslangValidator [new file with mode: 0755]
external/glslang/src/Test/glspv.esversion.vert [new file with mode: 0644]
external/glslang/src/Test/glspv.frag [new file with mode: 0644]
external/glslang/src/Test/glspv.version.frag [new file with mode: 0644]
external/glslang/src/Test/glspv.version.vert [new file with mode: 0644]
external/glslang/src/Test/glspv.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.amend.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.array.flatten.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.array.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.array.implicit-size.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.array.multidim.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.assoc.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.attribute.expression.comp [new file with mode: 0644]
external/glslang/src/Test/hlsl.attribute.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.automap.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.basic.comp [new file with mode: 0644]
external/glslang/src/Test/hlsl.basic.geom [new file with mode: 0644]
external/glslang/src/Test/hlsl.boolConv.vert [new file with mode: 0755]
external/glslang/src/Test/hlsl.buffer.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.calculatelod.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.calculatelodunclamped.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.cast.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.charLit.vert [new file with mode: 0755]
external/glslang/src/Test/hlsl.clip.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.comparison.vec.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.conditional.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.constantbuffer.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.constructexpr.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.deadFunctionMissingBody.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.depthGreater.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.depthLess.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.discard.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.doLoop.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.domain.1.tese [new file with mode: 0644]
external/glslang/src/Test/hlsl.domain.2.tese [new file with mode: 0644]
external/glslang/src/Test/hlsl.domain.3.tese [new file with mode: 0644]
external/glslang/src/Test/hlsl.emptystruct.init.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.emptystructreturn.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.emptystructreturn.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.entry-in.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.entry-out.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.entry.rename.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.flatten.return.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.float1.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.float4.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.forLoop.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gather.array.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gather.basic.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gather.basic.dx10.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.gather.offset.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gather.offsetarray.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gatherRGBA.array.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gatherRGBA.basic.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gatherRGBA.offset.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gatherRGBA.offsetarray.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gathercmpRGBA.array.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gathercmpRGBA.basic.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gathercmpRGBA.offset.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.gathercmpRGBA.offsetarray.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.getdimensions.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.getdimensions.dx10.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.getdimensions.rw.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.getsampleposition.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.hlslOffset.vert [new file with mode: 0755]
external/glslang/src/Test/hlsl.hull.1.tesc [new file with mode: 0644]
external/glslang/src/Test/hlsl.hull.2.tesc [new file with mode: 0644]
external/glslang/src/Test/hlsl.hull.ctrlpt-1.tesc [new file with mode: 0644]
external/glslang/src/Test/hlsl.hull.ctrlpt-2.tesc [new file with mode: 0644]
external/glslang/src/Test/hlsl.hull.void.tesc [new file with mode: 0644]
external/glslang/src/Test/hlsl.identifier.sample.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.if.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.implicitBool.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.inf.vert [new file with mode: 0755]
external/glslang/src/Test/hlsl.init.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.init2.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.inoutquals.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsic.frexp.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsic.frexp.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.barriers.comp [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.comp [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.d3dcolortoubyte4.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.double.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.evalfns.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.f1632.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.f3216.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.lit.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.negative.comp [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.negative.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.negative.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.promote.down.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.promote.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.promote.outputs.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.intrinsics.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.isfinite.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.layout.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.load.2dms.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.load.array.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.load.basic.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.load.basic.dx10.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.load.buffer.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.load.buffer.float.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.load.offset.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.load.offsetarray.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.load.rwbuffer.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.load.rwtexture.array.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.load.rwtexture.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.logical.binary.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.logical.binary.vec.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.logical.unary.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.logicalConvert.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.loopattr.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.matNx1.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.matType.bool.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.matType.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.matType.int.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.matrixSwizzle.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.matrixindex.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.max.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.mintypes.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.multiEntry.vert [new file with mode: 0755]
external/glslang/src/Test/hlsl.multiReturn.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.namespace.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.nonint-index.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.nonstaticMemberFunction.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.numericsuffixes.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.numthreads.comp [new file with mode: 0644]
external/glslang/src/Test/hlsl.overload.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.params.default.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.params.default.negative.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.partialInit.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.pp.line.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.pp.tokenpasting.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.precedence.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.precedence2.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.precise.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.promote.atomic.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.promote.binary.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.promote.vec1.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.promotions.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.reflection.binding.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.reflection.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.rw.atomics.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.rw.bracket.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.rw.register.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.rw.scalar.bracket.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.rw.swizzle.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.rw.vec2.bracket.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.sample.array.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.sample.basic.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.sample.offset.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.sample.offsetarray.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.sample.sub-vec4.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplebias.array.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplebias.basic.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplebias.offset.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplebias.offsetarray.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplecmp.array.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplecmp.basic.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplecmp.negative.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplecmp.negative2.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplecmp.offset.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplecmp.offsetarray.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplecmplevelzero.array.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplecmplevelzero.basic.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplecmplevelzero.offset.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplecmplevelzero.offsetarray.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplegrad.array.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplegrad.basic.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplegrad.basic.dx10.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplegrad.offset.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplegrad.offsetarray.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplelevel.array.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplelevel.basic.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplelevel.basic.dx10.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplelevel.offset.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.samplelevel.offsetarray.dx10.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.scalar-length.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.scalarCast.vert [new file with mode: 0755]
external/glslang/src/Test/hlsl.scope.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.semantic.geom [new file with mode: 0644]
external/glslang/src/Test/hlsl.semantic.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.semicolons.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.shapeConv.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.shapeConvRet.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.sin.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.staticMemberFunction.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.string.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.stringtoken.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.struct.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.struct.split-1.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.struct.split.array.geom [new file with mode: 0644]
external/glslang/src/Test/hlsl.struct.split.assign.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.struct.split.call.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.struct.split.nested.geom [new file with mode: 0644]
external/glslang/src/Test/hlsl.struct.split.trivial.geom [new file with mode: 0644]
external/glslang/src/Test/hlsl.struct.split.trivial.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.structIoFourWay.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.structStructName.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.structarray.flatten.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.structarray.flatten.geom [new file with mode: 0644]
external/glslang/src/Test/hlsl.structbuffer.append.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.structbuffer.atomics.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.structbuffer.byte.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.structbuffer.coherent.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.structbuffer.floatidx.comp [new file with mode: 0644]
external/glslang/src/Test/hlsl.structbuffer.fn.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.structbuffer.fn2.comp [new file with mode: 0644]
external/glslang/src/Test/hlsl.structbuffer.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.structbuffer.incdec.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.structbuffer.rw.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.structbuffer.rwbyte.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.structin.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.switch.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.swizzle.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.templatetypes.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.templatetypes.negative.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.this.frag [new file with mode: 0755]
external/glslang/src/Test/hlsl.tx.bracket.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.type.half.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.type.identifier.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.typeGraphCopy.vert [new file with mode: 0644]
external/glslang/src/Test/hlsl.typedef.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.void.frag [new file with mode: 0644]
external/glslang/src/Test/hlsl.whileLoop.frag [new file with mode: 0644]
external/glslang/src/Test/length.frag [new file with mode: 0644]
external/glslang/src/Test/lineContinuation.vert [new file with mode: 0644]
external/glslang/src/Test/lineContinuation100.vert [new file with mode: 0644]
external/glslang/src/Test/link1.frag [new file with mode: 0644]
external/glslang/src/Test/link1.vk.frag [new file with mode: 0644]
external/glslang/src/Test/link2.frag [new file with mode: 0644]
external/glslang/src/Test/link2.vk.frag [new file with mode: 0644]
external/glslang/src/Test/link3.frag [new file with mode: 0644]
external/glslang/src/Test/localAggregates.frag [new file with mode: 0644]
external/glslang/src/Test/loops.frag [new file with mode: 0644]
external/glslang/src/Test/loopsArtificial.frag [new file with mode: 0644]
external/glslang/src/Test/mains.frag [new file with mode: 0644]
external/glslang/src/Test/mains1.frag [new file with mode: 0644]
external/glslang/src/Test/mains2.frag [new file with mode: 0644]
external/glslang/src/Test/makeDoc [new file with mode: 0644]
external/glslang/src/Test/matrix.frag [new file with mode: 0644]
external/glslang/src/Test/matrix2.frag [new file with mode: 0644]
external/glslang/src/Test/matrixError.vert [new file with mode: 0644]
external/glslang/src/Test/maxClipDistances.vert [new file with mode: 0644]
external/glslang/src/Test/max_vertices_0.geom [new file with mode: 0644]
external/glslang/src/Test/missingBodies.vert [new file with mode: 0644]
external/glslang/src/Test/negativeArraySize.comp [new file with mode: 0644]
external/glslang/src/Test/newTexture.frag [new file with mode: 0644]
external/glslang/src/Test/noMain.vert [new file with mode: 0644]
external/glslang/src/Test/noMain1.geom [new file with mode: 0644]
external/glslang/src/Test/noMain2.geom [new file with mode: 0644]
external/glslang/src/Test/nonSquare.vert [new file with mode: 0644]
external/glslang/src/Test/nonVulkan.frag [new file with mode: 0644]
external/glslang/src/Test/nosuffix [new file with mode: 0755]
external/glslang/src/Test/numeral.frag [new file with mode: 0644]
external/glslang/src/Test/pointCoord.frag [new file with mode: 0644]
external/glslang/src/Test/precise.tesc [new file with mode: 0644]
external/glslang/src/Test/precise_struct_block.vert [new file with mode: 0644]
external/glslang/src/Test/precision.frag [new file with mode: 0644]
external/glslang/src/Test/precision.vert [new file with mode: 0644]
external/glslang/src/Test/prepost.frag [new file with mode: 0644]
external/glslang/src/Test/preprocessor.cpp_style___FILE__.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.cpp_style_line_directive.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.defined.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.edge_cases.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.eof_missing.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.errors.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.extensions.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.function_macro.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.include.disabled.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.include.enabled.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.line.frag [new file with mode: 0644]
external/glslang/src/Test/preprocessor.line.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.many.endif.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.pragma.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.simple.vert [new file with mode: 0644]
external/glslang/src/Test/preprocessor.success_if_parse_would_fail.vert [new file with mode: 0644]
external/glslang/src/Test/recurse1.frag [new file with mode: 0644]
external/glslang/src/Test/recurse1.vert [new file with mode: 0644]
external/glslang/src/Test/recurse2.frag [new file with mode: 0644]
external/glslang/src/Test/reflection.vert [new file with mode: 0644]
external/glslang/src/Test/remap.basic.dcefunc.frag [new file with mode: 0644]
external/glslang/src/Test/remap.basic.everything.frag [new file with mode: 0644]
external/glslang/src/Test/remap.basic.none.frag [new file with mode: 0644]
external/glslang/src/Test/remap.basic.strip.frag [new file with mode: 0644]
external/glslang/src/Test/remap.hlsl.sample.basic.everything.frag [new file with mode: 0644]
external/glslang/src/Test/remap.hlsl.sample.basic.none.frag [new file with mode: 0644]
external/glslang/src/Test/remap.hlsl.sample.basic.strip.frag [new file with mode: 0644]
external/glslang/src/Test/remap.hlsl.templatetypes.everything.frag [new file with mode: 0644]
external/glslang/src/Test/remap.hlsl.templatetypes.none.frag [new file with mode: 0644]
external/glslang/src/Test/remap.if.everything.frag [new file with mode: 0644]
external/glslang/src/Test/remap.if.none.frag [new file with mode: 0644]
external/glslang/src/Test/remap.literal64.everything.spv [new file with mode: 0644]
external/glslang/src/Test/remap.literal64.none.spv [new file with mode: 0644]
external/glslang/src/Test/remap.similar_1a.everything.frag [new file with mode: 0644]
external/glslang/src/Test/remap.similar_1a.none.frag [new file with mode: 0644]
external/glslang/src/Test/remap.similar_1b.everything.frag [new file with mode: 0644]
external/glslang/src/Test/remap.similar_1b.none.frag [new file with mode: 0644]
external/glslang/src/Test/remap.switch.everything.frag [new file with mode: 0644]
external/glslang/src/Test/remap.switch.none.frag [new file with mode: 0644]
external/glslang/src/Test/remap.uniformarray.everything.frag [new file with mode: 0644]
external/glslang/src/Test/remap.uniformarray.none.frag [new file with mode: 0644]
external/glslang/src/Test/runtests [new file with mode: 0755]
external/glslang/src/Test/sample.frag [new file with mode: 0644]
external/glslang/src/Test/sample.frag.out [new file with mode: 0644]
external/glslang/src/Test/sample.vert [new file with mode: 0644]
external/glslang/src/Test/sample.vert.out [new file with mode: 0644]
external/glslang/src/Test/simpleFunctionCall.frag [new file with mode: 0644]
external/glslang/src/Test/specExamples.frag [new file with mode: 0644]
external/glslang/src/Test/specExamples.vert [new file with mode: 0644]
external/glslang/src/Test/spv.100ops.frag [new file with mode: 0644]
external/glslang/src/Test/spv.130.frag [new file with mode: 0644]
external/glslang/src/Test/spv.140.frag [new file with mode: 0644]
external/glslang/src/Test/spv.150.geom [new file with mode: 0644]
external/glslang/src/Test/spv.150.vert [new file with mode: 0644]
external/glslang/src/Test/spv.300BuiltIns.vert [new file with mode: 0644]
external/glslang/src/Test/spv.300layout.frag [new file with mode: 0644]
external/glslang/src/Test/spv.300layout.vert [new file with mode: 0644]
external/glslang/src/Test/spv.300layoutp.vert [new file with mode: 0644]
external/glslang/src/Test/spv.310.bitcast.frag [new file with mode: 0644]
external/glslang/src/Test/spv.310.comp [new file with mode: 0644]
external/glslang/src/Test/spv.330.geom [new file with mode: 0644]
external/glslang/src/Test/spv.400.frag [new file with mode: 0644]
external/glslang/src/Test/spv.400.tesc [new file with mode: 0644]
external/glslang/src/Test/spv.400.tese [new file with mode: 0644]
external/glslang/src/Test/spv.420.geom [new file with mode: 0644]
external/glslang/src/Test/spv.430.frag [new file with mode: 0644]
external/glslang/src/Test/spv.430.vert [new file with mode: 0644]
external/glslang/src/Test/spv.450.geom [new file with mode: 0644]
external/glslang/src/Test/spv.450.noRedecl.tesc [new file with mode: 0644]
external/glslang/src/Test/spv.450.tesc [new file with mode: 0644]
external/glslang/src/Test/spv.AofA.frag [new file with mode: 0644]
external/glslang/src/Test/spv.GeometryShaderPassthrough.geom [new file with mode: 0644]
external/glslang/src/Test/spv.Operations.frag [new file with mode: 0644]
external/glslang/src/Test/spv.accessChain.frag [new file with mode: 0644]
external/glslang/src/Test/spv.aggOps.frag [new file with mode: 0644]
external/glslang/src/Test/spv.always-discard.frag [new file with mode: 0644]
external/glslang/src/Test/spv.always-discard2.frag [new file with mode: 0644]
external/glslang/src/Test/spv.atomic.comp [new file with mode: 0644]
external/glslang/src/Test/spv.bitCast.frag [new file with mode: 0644]
external/glslang/src/Test/spv.bool.vert [new file with mode: 0644]
external/glslang/src/Test/spv.boolInBlock.frag [new file with mode: 0644]
external/glslang/src/Test/spv.branch-return.vert [new file with mode: 0644]
external/glslang/src/Test/spv.buffer.autoassign.frag [new file with mode: 0644]
external/glslang/src/Test/spv.conditionalDiscard.frag [new file with mode: 0644]
external/glslang/src/Test/spv.conversion.frag [new file with mode: 0644]
external/glslang/src/Test/spv.dataOut.frag [new file with mode: 0644]
external/glslang/src/Test/spv.dataOutIndirect.frag [new file with mode: 0644]
external/glslang/src/Test/spv.dataOutIndirect.vert [new file with mode: 0644]
external/glslang/src/Test/spv.deepRvalue.frag [new file with mode: 0644]
external/glslang/src/Test/spv.depthOut.frag [new file with mode: 0644]
external/glslang/src/Test/spv.deviceGroup.frag [new file with mode: 0644]
external/glslang/src/Test/spv.discard-dce.frag [new file with mode: 0644]
external/glslang/src/Test/spv.do-simple.vert [new file with mode: 0644]
external/glslang/src/Test/spv.do-while-continue-break.vert [new file with mode: 0644]
external/glslang/src/Test/spv.doWhileLoop.frag [new file with mode: 0644]
external/glslang/src/Test/spv.double.comp [new file with mode: 0644]
external/glslang/src/Test/spv.drawParams.vert [new file with mode: 0644]
external/glslang/src/Test/spv.earlyReturnDiscard.frag [new file with mode: 0644]
external/glslang/src/Test/spv.float16.frag [new file with mode: 0644]
external/glslang/src/Test/spv.flowControl.frag [new file with mode: 0644]
external/glslang/src/Test/spv.for-complex-condition.vert [new file with mode: 0644]
external/glslang/src/Test/spv.for-continue-break.vert [new file with mode: 0644]
external/glslang/src/Test/spv.for-nobody.vert [new file with mode: 0644]
external/glslang/src/Test/spv.for-notest.vert [new file with mode: 0644]
external/glslang/src/Test/spv.for-simple.vert [new file with mode: 0644]
external/glslang/src/Test/spv.forLoop.frag [new file with mode: 0644]
external/glslang/src/Test/spv.forwardFun.frag [new file with mode: 0644]
external/glslang/src/Test/spv.functionCall.frag [new file with mode: 0644]
external/glslang/src/Test/spv.functionNestedOpaque.vert [new file with mode: 0755]
external/glslang/src/Test/spv.functionSemantics.frag [new file with mode: 0644]
external/glslang/src/Test/spv.glFragColor.frag [new file with mode: 0644]
external/glslang/src/Test/spv.glsl.register.autoassign.frag [new file with mode: 0644]
external/glslang/src/Test/spv.glsl.register.noautoassign.frag [new file with mode: 0644]
external/glslang/src/Test/spv.hlslOffsets.vert [new file with mode: 0755]
external/glslang/src/Test/spv.image.frag [new file with mode: 0644]
external/glslang/src/Test/spv.image.load-formatted.frag [new file with mode: 0644]
external/glslang/src/Test/spv.int64.frag [new file with mode: 0644]
external/glslang/src/Test/spv.intOps.vert [new file with mode: 0644]
external/glslang/src/Test/spv.interpOps.frag [new file with mode: 0644]
external/glslang/src/Test/spv.layoutNested.vert [new file with mode: 0644]
external/glslang/src/Test/spv.length.frag [new file with mode: 0644]
external/glslang/src/Test/spv.localAggregates.frag [new file with mode: 0644]
external/glslang/src/Test/spv.loops.frag [new file with mode: 0644]
external/glslang/src/Test/spv.loopsArtificial.frag [new file with mode: 0644]
external/glslang/src/Test/spv.matFun.vert [new file with mode: 0644]
external/glslang/src/Test/spv.matrix.frag [new file with mode: 0644]
external/glslang/src/Test/spv.matrix2.frag [new file with mode: 0644]
external/glslang/src/Test/spv.memoryQualifier.frag [new file with mode: 0644]
external/glslang/src/Test/spv.merge-unreachable.frag [new file with mode: 0644]
external/glslang/src/Test/spv.multiStruct.comp [new file with mode: 0644]
external/glslang/src/Test/spv.multiStructFuncall.frag [new file with mode: 0755]
external/glslang/src/Test/spv.multiView.frag [new file with mode: 0644]
external/glslang/src/Test/spv.multiviewPerViewAttributes.tesc [new file with mode: 0644]
external/glslang/src/Test/spv.multiviewPerViewAttributes.vert [new file with mode: 0644]
external/glslang/src/Test/spv.newTexture.frag [new file with mode: 0644]
external/glslang/src/Test/spv.noDeadDecorations.vert [new file with mode: 0644]
external/glslang/src/Test/spv.noWorkgroup.comp [new file with mode: 0644]
external/glslang/src/Test/spv.nonSquare.vert [new file with mode: 0644]
external/glslang/src/Test/spv.offsets.frag [new file with mode: 0755]
external/glslang/src/Test/spv.precise.tesc [new file with mode: 0644]
external/glslang/src/Test/spv.precise.tese [new file with mode: 0644]
external/glslang/src/Test/spv.precision.frag [new file with mode: 0644]
external/glslang/src/Test/spv.prepost.frag [new file with mode: 0644]
external/glslang/src/Test/spv.pushConstant.vert [new file with mode: 0644]
external/glslang/src/Test/spv.pushConstantAnon.vert [new file with mode: 0644]
external/glslang/src/Test/spv.qualifiers.vert [new file with mode: 0644]
external/glslang/src/Test/spv.queryL.frag [new file with mode: 0644]
external/glslang/src/Test/spv.register.autoassign-2.frag [new file with mode: 0644]
external/glslang/src/Test/spv.register.autoassign.frag [new file with mode: 0644]
external/glslang/src/Test/spv.register.autoassign.rangetest.frag [new file with mode: 0644]
external/glslang/src/Test/spv.register.noautoassign.frag [new file with mode: 0644]
external/glslang/src/Test/spv.rw.autoassign.frag [new file with mode: 0644]
external/glslang/src/Test/spv.sampleMaskOverrideCoverage.frag [new file with mode: 0644]
external/glslang/src/Test/spv.separate.frag [new file with mode: 0644]
external/glslang/src/Test/spv.set.vert [new file with mode: 0644]
external/glslang/src/Test/spv.shaderBallot.comp [new file with mode: 0644]
external/glslang/src/Test/spv.shaderBallotAMD.comp [new file with mode: 0644]
external/glslang/src/Test/spv.shaderDrawParams.vert [new file with mode: 0644]
external/glslang/src/Test/spv.shaderGroupVote.comp [new file with mode: 0644]
external/glslang/src/Test/spv.shiftOps.frag [new file with mode: 0644]
external/glslang/src/Test/spv.shortCircuit.frag [new file with mode: 0755]
external/glslang/src/Test/spv.simpleFunctionCall.frag [new file with mode: 0644]
external/glslang/src/Test/spv.simpleMat.vert [new file with mode: 0644]
external/glslang/src/Test/spv.sparseTexture.frag [new file with mode: 0644]
external/glslang/src/Test/spv.sparseTextureClamp.frag [new file with mode: 0644]
external/glslang/src/Test/spv.specConst.vert [new file with mode: 0644]
external/glslang/src/Test/spv.specConstant.comp [new file with mode: 0644]
external/glslang/src/Test/spv.specConstant.vert [new file with mode: 0644]
external/glslang/src/Test/spv.specConstantComposite.vert [new file with mode: 0644]
external/glslang/src/Test/spv.specConstantOperations.vert [new file with mode: 0644]
external/glslang/src/Test/spv.ssbo.autoassign.frag [new file with mode: 0644]
external/glslang/src/Test/spv.stereoViewRendering.tesc [new file with mode: 0644]
external/glslang/src/Test/spv.stereoViewRendering.vert [new file with mode: 0644]
external/glslang/src/Test/spv.storageBuffer.vert [new file with mode: 0644]
external/glslang/src/Test/spv.structAssignment.frag [new file with mode: 0644]
external/glslang/src/Test/spv.structDeref.frag [new file with mode: 0644]
external/glslang/src/Test/spv.structure.frag [new file with mode: 0644]
external/glslang/src/Test/spv.subpass.frag [new file with mode: 0644]
external/glslang/src/Test/spv.switch.frag [new file with mode: 0644]
external/glslang/src/Test/spv.swizzle.frag [new file with mode: 0644]
external/glslang/src/Test/spv.swizzleInversion.frag [new file with mode: 0644]
external/glslang/src/Test/spv.test.frag [new file with mode: 0644]
external/glslang/src/Test/spv.test.vert [new file with mode: 0644]
external/glslang/src/Test/spv.texture.frag [new file with mode: 0644]
external/glslang/src/Test/spv.texture.vert [new file with mode: 0644]
external/glslang/src/Test/spv.types.frag [new file with mode: 0644]
external/glslang/src/Test/spv.uint.frag [new file with mode: 0644]
external/glslang/src/Test/spv.uniformArray.frag [new file with mode: 0644]
external/glslang/src/Test/spv.variableArrayIndex.frag [new file with mode: 0644]
external/glslang/src/Test/spv.varyingArray.frag [new file with mode: 0644]
external/glslang/src/Test/spv.varyingArrayIndirect.frag [new file with mode: 0644]
external/glslang/src/Test/spv.viewportArray2.tesc [new file with mode: 0644]
external/glslang/src/Test/spv.viewportArray2.vert [new file with mode: 0644]
external/glslang/src/Test/spv.voidFunction.frag [new file with mode: 0644]
external/glslang/src/Test/spv.while-continue-break.vert [new file with mode: 0644]
external/glslang/src/Test/spv.while-simple.vert [new file with mode: 0644]
external/glslang/src/Test/spv.whileLoop.frag [new file with mode: 0644]
external/glslang/src/Test/structAssignment.frag [new file with mode: 0644]
external/glslang/src/Test/structDeref.frag [new file with mode: 0644]
external/glslang/src/Test/structure.frag [new file with mode: 0644]
external/glslang/src/Test/switch.frag [new file with mode: 0644]
external/glslang/src/Test/swizzle.frag [new file with mode: 0644]
external/glslang/src/Test/syntaxError.frag [new file with mode: 0644]
external/glslang/src/Test/test.frag [new file with mode: 0644]
external/glslang/src/Test/texture.frag [new file with mode: 0644]
external/glslang/src/Test/tokenLength.vert [new file with mode: 0644]
external/glslang/src/Test/tokenPaste.vert [new file with mode: 0644]
external/glslang/src/Test/types.frag [new file with mode: 0644]
external/glslang/src/Test/uint.frag [new file with mode: 0644]
external/glslang/src/Test/uniformArray.frag [new file with mode: 0644]
external/glslang/src/Test/variableArrayIndex.frag [new file with mode: 0644]
external/glslang/src/Test/varyingArray.frag [new file with mode: 0644]
external/glslang/src/Test/varyingArrayIndirect.frag [new file with mode: 0644]
external/glslang/src/Test/versionsClean.frag [new file with mode: 0644]
external/glslang/src/Test/versionsClean.vert [new file with mode: 0644]
external/glslang/src/Test/versionsErrors.frag [new file with mode: 0644]
external/glslang/src/Test/versionsErrors.vert [new file with mode: 0644]
external/glslang/src/Test/voidFunction.frag [new file with mode: 0644]
external/glslang/src/Test/vulkan.ast.vert [new file with mode: 0644]
external/glslang/src/Test/vulkan.comp [new file with mode: 0644]
external/glslang/src/Test/vulkan.frag [new file with mode: 0644]
external/glslang/src/Test/vulkan.vert [new file with mode: 0644]
external/glslang/src/Test/whileLoop.frag [new file with mode: 0644]
external/glslang/src/glslang/CMakeLists.txt [new file with mode: 0644]
external/glslang/src/glslang/GenericCodeGen/CodeGen.cpp [new file with mode: 0644]
external/glslang/src/glslang/GenericCodeGen/Link.cpp [new file with mode: 0644]
external/glslang/src/glslang/Include/BaseTypes.h [new file with mode: 0644]
external/glslang/src/glslang/Include/Common.h [new file with mode: 0644]
external/glslang/src/glslang/Include/ConstantUnion.h [new file with mode: 0644]
external/glslang/src/glslang/Include/InfoSink.h [new file with mode: 0644]
external/glslang/src/glslang/Include/InitializeGlobals.h [new file with mode: 0644]
external/glslang/src/glslang/Include/PoolAlloc.h [new file with mode: 0644]
external/glslang/src/glslang/Include/ResourceLimits.h [new file with mode: 0644]
external/glslang/src/glslang/Include/ShHandle.h [new file with mode: 0644]
external/glslang/src/glslang/Include/Types.h [new file with mode: 0644]
external/glslang/src/glslang/Include/arrays.h [new file with mode: 0644]
external/glslang/src/glslang/Include/intermediate.h [new file with mode: 0644]
external/glslang/src/glslang/Include/revision.h [new file with mode: 0644]
external/glslang/src/glslang/Include/revision.template [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/Constant.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/InfoSink.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/Initialize.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/Initialize.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/IntermTraverse.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/Intermediate.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/LiveTraverser.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/ParseContextBase.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/ParseHelper.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/ParseHelper.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/PoolAlloc.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/RemoveTree.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/RemoveTree.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/Scan.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/Scan.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/ScanContext.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/ShaderLang.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/SymbolTable.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/SymbolTable.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/Versions.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/Versions.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/gl_types.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/glslang.y [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/glslang_tab.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/glslang_tab.cpp.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/intermOut.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/iomapper.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/iomapper.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/limits.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/linkValidate.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/localintermediate.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/parseConst.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/parseVersions.h [new file with mode: 0755]
external/glslang/src/glslang/MachineIndependent/preprocessor/Pp.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/preprocessor/PpAtom.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/preprocessor/PpContext.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/preprocessor/PpContext.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/preprocessor/PpMemory.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/preprocessor/PpScanner.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/preprocessor/PpSymbols.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/preprocessor/PpTokens.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/preprocessor/PpTokens.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/propagateNoContraction.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/propagateNoContraction.h [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/reflection.cpp [new file with mode: 0644]
external/glslang/src/glslang/MachineIndependent/reflection.h [new file with mode: 0644]
external/glslang/src/glslang/OSDependent/Unix/CMakeLists.txt [new file with mode: 0644]
external/glslang/src/glslang/OSDependent/Unix/ossource.cpp [new file with mode: 0644]
external/glslang/src/glslang/OSDependent/Windows/CMakeLists.txt [new file with mode: 0644]
external/glslang/src/glslang/OSDependent/Windows/main.cpp [new file with mode: 0644]
external/glslang/src/glslang/OSDependent/Windows/ossource.cpp [new file with mode: 0644]
external/glslang/src/glslang/OSDependent/osinclude.h [new file with mode: 0644]
external/glslang/src/glslang/Public/ShaderLang.h [new file with mode: 0644]
external/glslang/src/glslang/updateGrammar [new file with mode: 0755]
external/glslang/src/gtests/AST.FromFile.cpp [new file with mode: 0644]
external/glslang/src/gtests/BuiltInResource.FromFile.cpp [new file with mode: 0644]
external/glslang/src/gtests/CMakeLists.txt [new file with mode: 0644]
external/glslang/src/gtests/Config.FromFile.cpp [new file with mode: 0644]
external/glslang/src/gtests/HexFloat.cpp [new file with mode: 0644]
external/glslang/src/gtests/Hlsl.FromFile.cpp [new file with mode: 0644]
external/glslang/src/gtests/Initializer.h [new file with mode: 0644]
external/glslang/src/gtests/Link.FromFile.Vk.cpp [new file with mode: 0644]
external/glslang/src/gtests/Link.FromFile.cpp [new file with mode: 0644]
external/glslang/src/gtests/Pp.FromFile.cpp [new file with mode: 0644]
external/glslang/src/gtests/README.md [new file with mode: 0644]
external/glslang/src/gtests/Remap.FromFile.cpp [new file with mode: 0644]
external/glslang/src/gtests/Settings.cpp [new file with mode: 0644]
external/glslang/src/gtests/Settings.h [new file with mode: 0644]
external/glslang/src/gtests/Spv.FromFile.cpp [new file with mode: 0644]
external/glslang/src/gtests/TestFixture.cpp [new file with mode: 0644]
external/glslang/src/gtests/TestFixture.h [new file with mode: 0644]
external/glslang/src/gtests/main.cpp [new file with mode: 0644]
external/glslang/src/hlsl/CMakeLists.txt [new file with mode: 0755]
external/glslang/src/hlsl/hlslAttributes.cpp [new file with mode: 0644]
external/glslang/src/hlsl/hlslAttributes.h [new file with mode: 0644]
external/glslang/src/hlsl/hlslGrammar.cpp [new file with mode: 0755]
external/glslang/src/hlsl/hlslGrammar.h [new file with mode: 0755]
external/glslang/src/hlsl/hlslOpMap.cpp [new file with mode: 0755]
external/glslang/src/hlsl/hlslOpMap.h [new file with mode: 0755]
external/glslang/src/hlsl/hlslParseHelper.cpp [new file with mode: 0755]
external/glslang/src/hlsl/hlslParseHelper.h [new file with mode: 0755]
external/glslang/src/hlsl/hlslParseables.cpp [new file with mode: 0755]
external/glslang/src/hlsl/hlslParseables.h [new file with mode: 0755]
external/glslang/src/hlsl/hlslScanContext.cpp [new file with mode: 0755]
external/glslang/src/hlsl/hlslScanContext.h [new file with mode: 0755]
external/glslang/src/hlsl/hlslTokenStream.cpp [new file with mode: 0755]
external/glslang/src/hlsl/hlslTokenStream.h [new file with mode: 0755]
external/glslang/src/hlsl/hlslTokens.h [new file with mode: 0755]
external/glslang/src/make-revision [new file with mode: 0755]
external/kc-cts/.gitignore [deleted file]
external/libpng/.gitignore [deleted file]
external/libpng/CMakeLists.txt
external/libpng/packages/libpng-1.6.17.tar.gz [new file with mode: 0644]
external/libpng/src/ANNOUNCE [new file with mode: 0644]
external/libpng/src/CHANGES [new file with mode: 0644]
external/libpng/src/CMakeLists.txt [new file with mode: 0644]
external/libpng/src/INSTALL [new file with mode: 0644]
external/libpng/src/LICENSE [new file with mode: 0644]
external/libpng/src/Makefile.am [new file with mode: 0644]
external/libpng/src/Makefile.in [new file with mode: 0644]
external/libpng/src/README [new file with mode: 0644]
external/libpng/src/TODO [new file with mode: 0644]
external/libpng/src/aclocal.m4 [new file with mode: 0644]
external/libpng/src/arm/arm_init.c [new file with mode: 0644]
external/libpng/src/arm/filter_neon.S [new file with mode: 0644]
external/libpng/src/arm/filter_neon_intrinsics.c [new file with mode: 0644]
external/libpng/src/autogen.sh [new file with mode: 0755]
external/libpng/src/compile [new file with mode: 0755]
external/libpng/src/config.guess [new file with mode: 0755]
external/libpng/src/config.h.in [new file with mode: 0644]
external/libpng/src/config.sub [new file with mode: 0755]
external/libpng/src/configure [new file with mode: 0755]
external/libpng/src/configure.ac [new file with mode: 0644]
external/libpng/src/contrib/README.txt [new file with mode: 0644]
external/libpng/src/contrib/arm-neon/README [new file with mode: 0644]
external/libpng/src/contrib/arm-neon/android-ndk.c [new file with mode: 0644]
external/libpng/src/contrib/arm-neon/linux-auxv.c [new file with mode: 0644]
external/libpng/src/contrib/arm-neon/linux.c [new file with mode: 0644]
external/libpng/src/contrib/conftest/README [new file with mode: 0644]
external/libpng/src/contrib/conftest/read.dfa [new file with mode: 0644]
external/libpng/src/contrib/conftest/s_read.dfa [new file with mode: 0644]
external/libpng/src/contrib/conftest/s_write.dfa [new file with mode: 0644]
external/libpng/src/contrib/conftest/simple.dfa [new file with mode: 0644]
external/libpng/src/contrib/conftest/write.dfa [new file with mode: 0644]
external/libpng/src/contrib/examples/README.txt [new file with mode: 0644]
external/libpng/src/contrib/examples/iccfrompng.c [new file with mode: 0644]
external/libpng/src/contrib/examples/pngpixel.c [new file with mode: 0644]
external/libpng/src/contrib/examples/pngtopng.c [new file with mode: 0644]
external/libpng/src/contrib/gregbook/COPYING [new file with mode: 0644]
external/libpng/src/contrib/gregbook/LICENSE [new file with mode: 0644]
external/libpng/src/contrib/gregbook/Makefile.mingw32 [new file with mode: 0644]
external/libpng/src/contrib/gregbook/Makefile.sgi [new file with mode: 0644]
external/libpng/src/contrib/gregbook/Makefile.unx [new file with mode: 0644]
external/libpng/src/contrib/gregbook/Makefile.w32 [new file with mode: 0644]
external/libpng/src/contrib/gregbook/README [new file with mode: 0644]
external/libpng/src/contrib/gregbook/makevms.com [new file with mode: 0644]
external/libpng/src/contrib/gregbook/readpng.c [new file with mode: 0644]
external/libpng/src/contrib/gregbook/readpng.h [new file with mode: 0644]
external/libpng/src/contrib/gregbook/readpng2.c [new file with mode: 0644]
external/libpng/src/contrib/gregbook/readpng2.h [new file with mode: 0644]
external/libpng/src/contrib/gregbook/readppm.c [new file with mode: 0644]
external/libpng/src/contrib/gregbook/rpng-win.c [new file with mode: 0644]
external/libpng/src/contrib/gregbook/rpng-x.c [new file with mode: 0644]
external/libpng/src/contrib/gregbook/rpng2-win.c [new file with mode: 0644]
external/libpng/src/contrib/gregbook/rpng2-x.c [new file with mode: 0644]
external/libpng/src/contrib/gregbook/toucan.png [new file with mode: 0644]
external/libpng/src/contrib/gregbook/wpng.c [new file with mode: 0644]
external/libpng/src/contrib/gregbook/writepng.c [new file with mode: 0644]
external/libpng/src/contrib/gregbook/writepng.h [new file with mode: 0644]
external/libpng/src/contrib/libtests/fakepng.c [new file with mode: 0644]
external/libpng/src/contrib/libtests/gentests.sh [new file with mode: 0755]
external/libpng/src/contrib/libtests/makepng.c [new file with mode: 0644]
external/libpng/src/contrib/libtests/pngimage.c [new file with mode: 0644]
external/libpng/src/contrib/libtests/pngstest.c [new file with mode: 0644]
external/libpng/src/contrib/libtests/pngunknown.c [new file with mode: 0644]
external/libpng/src/contrib/libtests/pngvalid.c [new file with mode: 0644]
external/libpng/src/contrib/libtests/readpng.c [new file with mode: 0644]
external/libpng/src/contrib/libtests/tarith.c [new file with mode: 0644]
external/libpng/src/contrib/libtests/timepng.c [new file with mode: 0644]
external/libpng/src/contrib/pngminim/README [new file with mode: 0644]
external/libpng/src/contrib/pngminim/decoder/README [new file with mode: 0644]
external/libpng/src/contrib/pngminim/decoder/makefile [new file with mode: 0644]
external/libpng/src/contrib/pngminim/decoder/pngusr.dfa [new file with mode: 0644]
external/libpng/src/contrib/pngminim/decoder/pngusr.h [new file with mode: 0644]
external/libpng/src/contrib/pngminim/encoder/README [new file with mode: 0644]
external/libpng/src/contrib/pngminim/encoder/makefile [new file with mode: 0644]
external/libpng/src/contrib/pngminim/encoder/pngusr.dfa [new file with mode: 0644]
external/libpng/src/contrib/pngminim/encoder/pngusr.h [new file with mode: 0644]
external/libpng/src/contrib/pngminim/preader/README [new file with mode: 0644]
external/libpng/src/contrib/pngminim/preader/makefile [new file with mode: 0644]
external/libpng/src/contrib/pngminim/preader/pngusr.dfa [new file with mode: 0644]
external/libpng/src/contrib/pngminim/preader/pngusr.h [new file with mode: 0644]
external/libpng/src/contrib/pngminus/README [new file with mode: 0644]
external/libpng/src/contrib/pngminus/makefile.std [new file with mode: 0644]
external/libpng/src/contrib/pngminus/makefile.tc3 [new file with mode: 0644]
external/libpng/src/contrib/pngminus/makevms.com [new file with mode: 0644]
external/libpng/src/contrib/pngminus/png2pnm.bat [new file with mode: 0755]
external/libpng/src/contrib/pngminus/png2pnm.c [new file with mode: 0644]
external/libpng/src/contrib/pngminus/png2pnm.sh [new file with mode: 0755]
external/libpng/src/contrib/pngminus/pngminus.bat [new file with mode: 0755]
external/libpng/src/contrib/pngminus/pngminus.sh [new file with mode: 0755]
external/libpng/src/contrib/pngminus/pnm2png.bat [new file with mode: 0755]
external/libpng/src/contrib/pngminus/pnm2png.c [new file with mode: 0644]
external/libpng/src/contrib/pngminus/pnm2png.sh [new file with mode: 0755]
external/libpng/src/contrib/pngsuite/README [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn0g01.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn0g02.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn0g04.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn0g08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn0g16.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn2c08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn2c16.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn3p01.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn3p02.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn3p04.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn3p08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn4a08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn4a16.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn6a08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/basn6a16.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftbbn0g01.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftbbn0g02.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftbbn0g04.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftbbn2c16.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftbbn3p08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftbgn2c16.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftbgn3p08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftbrn2c08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftbwn0g16.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftbwn3p08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftbyn3p08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftp0n0g08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftp0n2c08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftp0n3p08.png [new file with mode: 0644]
external/libpng/src/contrib/pngsuite/ftp1n3p08.png [new file with mode: 0644]
external/libpng/src/contrib/tools/README.txt [new file with mode: 0644]
external/libpng/src/contrib/tools/checksum-icc.c [new file with mode: 0644]
external/libpng/src/contrib/tools/chkfmt [new file with mode: 0755]
external/libpng/src/contrib/tools/cvtcolor.c [new file with mode: 0644]
external/libpng/src/contrib/tools/intgamma.sh [new file with mode: 0755]
external/libpng/src/contrib/tools/makesRGB.c [new file with mode: 0644]
external/libpng/src/contrib/tools/png-fix-itxt.c [new file with mode: 0644]
external/libpng/src/contrib/tools/pngfix.c [new file with mode: 0644]
external/libpng/src/contrib/tools/sRGB.h [new file with mode: 0644]
external/libpng/src/contrib/visupng/PngFile.c [new file with mode: 0644]
external/libpng/src/contrib/visupng/PngFile.h [new file with mode: 0644]
external/libpng/src/contrib/visupng/README.txt [new file with mode: 0644]
external/libpng/src/contrib/visupng/VisualPng.c [new file with mode: 0644]
external/libpng/src/contrib/visupng/VisualPng.dsp [new file with mode: 0644]
external/libpng/src/contrib/visupng/VisualPng.dsw [new file with mode: 0644]
external/libpng/src/contrib/visupng/VisualPng.ico [new file with mode: 0644]
external/libpng/src/contrib/visupng/VisualPng.png [new file with mode: 0644]
external/libpng/src/contrib/visupng/VisualPng.rc [new file with mode: 0644]
external/libpng/src/contrib/visupng/cexcept.h [new file with mode: 0644]
external/libpng/src/contrib/visupng/resource.h [new file with mode: 0644]
external/libpng/src/depcomp [new file with mode: 0755]
external/libpng/src/example.c [new file with mode: 0644]
external/libpng/src/install-sh [new file with mode: 0755]
external/libpng/src/libpng-config.in [new file with mode: 0644]
external/libpng/src/libpng-manual.txt [new file with mode: 0644]
external/libpng/src/libpng.3 [new file with mode: 0644]
external/libpng/src/libpng.pc.in [new file with mode: 0644]
external/libpng/src/libpngpf.3 [new file with mode: 0644]
external/libpng/src/ltmain.sh [new file with mode: 0644]
external/libpng/src/missing [new file with mode: 0755]
external/libpng/src/png.5 [new file with mode: 0644]
external/libpng/src/png.c [new file with mode: 0644]
external/libpng/src/png.h [new file with mode: 0644]
external/libpng/src/pngbar.jpg [new file with mode: 0644]
external/libpng/src/pngbar.png [new file with mode: 0644]
external/libpng/src/pngconf.h [new file with mode: 0644]
external/libpng/src/pngdebug.h [new file with mode: 0644]
external/libpng/src/pngerror.c [new file with mode: 0644]
external/libpng/src/pngget.c [new file with mode: 0644]
external/libpng/src/pnginfo.h [new file with mode: 0644]
external/libpng/src/pnglibconf.h [new file with mode: 0644]
external/libpng/src/pngmem.c [new file with mode: 0644]
external/libpng/src/pngnow.png [new file with mode: 0644]
external/libpng/src/pngpread.c [new file with mode: 0644]
external/libpng/src/pngpriv.h [new file with mode: 0644]
external/libpng/src/pngread.c [new file with mode: 0644]
external/libpng/src/pngrio.c [new file with mode: 0644]
external/libpng/src/pngrtran.c [new file with mode: 0644]
external/libpng/src/pngrutil.c [new file with mode: 0644]
external/libpng/src/pngset.c [new file with mode: 0644]
external/libpng/src/pngstruct.h [new file with mode: 0644]
external/libpng/src/pngtest.c [new file with mode: 0644]
external/libpng/src/pngtest.png [new file with mode: 0644]
external/libpng/src/pngtrans.c [new file with mode: 0644]
external/libpng/src/pngusr.dfa [new file with mode: 0644]
external/libpng/src/pngwio.c [new file with mode: 0644]
external/libpng/src/pngwrite.c [new file with mode: 0644]
external/libpng/src/pngwtran.c [new file with mode: 0644]
external/libpng/src/pngwutil.c [new file with mode: 0644]
external/libpng/src/projects/owatcom/libpng.tgt [new file with mode: 0644]
external/libpng/src/projects/owatcom/libpng.wpj [new file with mode: 0644]
external/libpng/src/projects/owatcom/pngconfig.mak [new file with mode: 0644]
external/libpng/src/projects/owatcom/pngstest.tgt [new file with mode: 0644]
external/libpng/src/projects/owatcom/pngtest.tgt [new file with mode: 0644]
external/libpng/src/projects/owatcom/pngvalid.tgt [new file with mode: 0644]
external/libpng/src/projects/visualc71/PRJ0041.mak [new file with mode: 0644]
external/libpng/src/projects/visualc71/README.txt [new file with mode: 0644]
external/libpng/src/projects/visualc71/README_zlib.txt [new file with mode: 0644]
external/libpng/src/projects/visualc71/libpng.sln [new file with mode: 0644]
external/libpng/src/projects/visualc71/libpng.vcproj [new file with mode: 0644]
external/libpng/src/projects/visualc71/pngtest.vcproj [new file with mode: 0644]
external/libpng/src/projects/visualc71/zlib.vcproj [new file with mode: 0644]
external/libpng/src/projects/vstudio/WARNING [new file with mode: 0644]
external/libpng/src/projects/vstudio/libpng/libpng.vcxproj [new file with mode: 0644]
external/libpng/src/projects/vstudio/pnglibconf/pnglibconf.vcxproj [new file with mode: 0644]
external/libpng/src/projects/vstudio/pngstest/pngstest.vcxproj [new file with mode: 0644]
external/libpng/src/projects/vstudio/pngtest/pngtest.vcxproj [new file with mode: 0644]
external/libpng/src/projects/vstudio/pngunknown/pngunknown.vcxproj [new file with mode: 0644]
external/libpng/src/projects/vstudio/pngvalid/pngvalid.vcxproj [new file with mode: 0644]
external/libpng/src/projects/vstudio/readme.txt [new file with mode: 0644]
external/libpng/src/projects/vstudio/vstudio.sln [new file with mode: 0644]
external/libpng/src/projects/vstudio/zlib.props [new file with mode: 0644]
external/libpng/src/projects/vstudio/zlib/zlib.vcxproj [new file with mode: 0644]
external/libpng/src/scripts/README.txt [new file with mode: 0644]
external/libpng/src/scripts/SCOPTIONS.ppc [new file with mode: 0644]
external/libpng/src/scripts/checksym.awk [new file with mode: 0755]
external/libpng/src/scripts/def.c [new file with mode: 0644]
external/libpng/src/scripts/descrip.mms [new file with mode: 0644]
external/libpng/src/scripts/dfn.awk [new file with mode: 0755]
external/libpng/src/scripts/intprefix.c [new file with mode: 0644]
external/libpng/src/scripts/libpng-config-body.in [new file with mode: 0644]
external/libpng/src/scripts/libpng-config-head.in [new file with mode: 0644]
external/libpng/src/scripts/libpng.pc.in [new file with mode: 0644]
external/libpng/src/scripts/libtool.m4 [new file with mode: 0644]
external/libpng/src/scripts/ltoptions.m4 [new file with mode: 0644]
external/libpng/src/scripts/ltsugar.m4 [new file with mode: 0644]
external/libpng/src/scripts/ltversion.m4 [new file with mode: 0644]
external/libpng/src/scripts/lt~obsolete.m4 [new file with mode: 0644]
external/libpng/src/scripts/macro.lst [new file with mode: 0644]
external/libpng/src/scripts/makefile.32sunu [new file with mode: 0644]
external/libpng/src/scripts/makefile.64sunu [new file with mode: 0644]
external/libpng/src/scripts/makefile.acorn [new file with mode: 0644]
external/libpng/src/scripts/makefile.aix [new file with mode: 0644]
external/libpng/src/scripts/makefile.amiga [new file with mode: 0644]
external/libpng/src/scripts/makefile.atari [new file with mode: 0644]
external/libpng/src/scripts/makefile.bc32 [new file with mode: 0644]
external/libpng/src/scripts/makefile.beos [new file with mode: 0644]
external/libpng/src/scripts/makefile.bor [new file with mode: 0644]
external/libpng/src/scripts/makefile.cegcc [new file with mode: 0644]
external/libpng/src/scripts/makefile.darwin [new file with mode: 0644]
external/libpng/src/scripts/makefile.dec [new file with mode: 0644]
external/libpng/src/scripts/makefile.dj2 [new file with mode: 0644]
external/libpng/src/scripts/makefile.freebsd [new file with mode: 0644]
external/libpng/src/scripts/makefile.gcc [new file with mode: 0644]
external/libpng/src/scripts/makefile.hp64 [new file with mode: 0644]
external/libpng/src/scripts/makefile.hpgcc [new file with mode: 0644]
external/libpng/src/scripts/makefile.hpux [new file with mode: 0644]
external/libpng/src/scripts/makefile.ibmc [new file with mode: 0644]
external/libpng/src/scripts/makefile.intel [new file with mode: 0644]
external/libpng/src/scripts/makefile.knr [new file with mode: 0644]
external/libpng/src/scripts/makefile.linux [new file with mode: 0644]
external/libpng/src/scripts/makefile.mips [new file with mode: 0644]
external/libpng/src/scripts/makefile.msc [new file with mode: 0644]
external/libpng/src/scripts/makefile.msys [new file with mode: 0644]
external/libpng/src/scripts/makefile.ne12bsd [new file with mode: 0644]
external/libpng/src/scripts/makefile.netbsd [new file with mode: 0644]
external/libpng/src/scripts/makefile.openbsd [new file with mode: 0644]
external/libpng/src/scripts/makefile.sco [new file with mode: 0644]
external/libpng/src/scripts/makefile.sggcc [new file with mode: 0644]
external/libpng/src/scripts/makefile.sgi [new file with mode: 0644]
external/libpng/src/scripts/makefile.so9 [new file with mode: 0644]
external/libpng/src/scripts/makefile.solaris [new file with mode: 0644]
external/libpng/src/scripts/makefile.solaris-x86 [new file with mode: 0644]
external/libpng/src/scripts/makefile.std [new file with mode: 0644]
external/libpng/src/scripts/makefile.sunos [new file with mode: 0644]
external/libpng/src/scripts/makefile.tc3 [new file with mode: 0644]
external/libpng/src/scripts/makefile.vcwin32 [new file with mode: 0644]
external/libpng/src/scripts/makevms.com [new file with mode: 0644]
external/libpng/src/scripts/options.awk [new file with mode: 0755]
external/libpng/src/scripts/pnglibconf.dfa [new file with mode: 0644]
external/libpng/src/scripts/pnglibconf.h.prebuilt [new file with mode: 0644]
external/libpng/src/scripts/pnglibconf.mak [new file with mode: 0755]
external/libpng/src/scripts/pngwin.rc [new file with mode: 0644]
external/libpng/src/scripts/prefix.c [new file with mode: 0644]
external/libpng/src/scripts/smakefile.ppc [new file with mode: 0644]
external/libpng/src/scripts/sym.c [new file with mode: 0644]
external/libpng/src/scripts/symbols.c [new file with mode: 0644]
external/libpng/src/scripts/symbols.def [new file with mode: 0644]
external/libpng/src/scripts/vers.c [new file with mode: 0644]
external/libpng/src/test-driver [new file with mode: 0755]
external/libpng/src/tests/pngimage-full [new file with mode: 0755]
external/libpng/src/tests/pngimage-quick [new file with mode: 0755]
external/libpng/src/tests/pngstest [new file with mode: 0755]
external/libpng/src/tests/pngstest-0g01 [new file with mode: 0755]
external/libpng/src/tests/pngstest-0g02 [new file with mode: 0755]
external/libpng/src/tests/pngstest-0g04 [new file with mode: 0755]
external/libpng/src/tests/pngstest-0g08 [new file with mode: 0755]
external/libpng/src/tests/pngstest-0g16 [new file with mode: 0755]
external/libpng/src/tests/pngstest-2c08 [new file with mode: 0755]
external/libpng/src/tests/pngstest-2c16 [new file with mode: 0755]
external/libpng/src/tests/pngstest-3p01 [new file with mode: 0755]
external/libpng/src/tests/pngstest-3p02 [new file with mode: 0755]
external/libpng/src/tests/pngstest-3p04 [new file with mode: 0755]
external/libpng/src/tests/pngstest-3p08 [new file with mode: 0755]
external/libpng/src/tests/pngstest-4a08 [new file with mode: 0755]
external/libpng/src/tests/pngstest-4a16 [new file with mode: 0755]
external/libpng/src/tests/pngstest-6a08 [new file with mode: 0755]
external/libpng/src/tests/pngstest-6a16 [new file with mode: 0755]
external/libpng/src/tests/pngstest-error [new file with mode: 0755]
external/libpng/src/tests/pngtest [new file with mode: 0755]
external/libpng/src/tests/pngunknown-IDAT [new file with mode: 0755]
external/libpng/src/tests/pngunknown-discard [new file with mode: 0755]
external/libpng/src/tests/pngunknown-if-safe [new file with mode: 0755]
external/libpng/src/tests/pngunknown-sAPI [new file with mode: 0755]
external/libpng/src/tests/pngunknown-sTER [new file with mode: 0755]
external/libpng/src/tests/pngunknown-save [new file with mode: 0755]
external/libpng/src/tests/pngunknown-vpAg [new file with mode: 0755]
external/libpng/src/tests/pngvalid-gamma-16-to-8 [new file with mode: 0755]
external/libpng/src/tests/pngvalid-gamma-alpha-mode [new file with mode: 0755]
external/libpng/src/tests/pngvalid-gamma-background [new file with mode: 0755]
external/libpng/src/tests/pngvalid-gamma-expand16-alpha-mode [new file with mode: 0755]
external/libpng/src/tests/pngvalid-gamma-expand16-background [new file with mode: 0755]
external/libpng/src/tests/pngvalid-gamma-expand16-transform [new file with mode: 0755]
external/libpng/src/tests/pngvalid-gamma-sbit [new file with mode: 0755]
external/libpng/src/tests/pngvalid-gamma-threshold [new file with mode: 0755]
external/libpng/src/tests/pngvalid-gamma-transform [new file with mode: 0755]
external/libpng/src/tests/pngvalid-progressive-interlace-size [new file with mode: 0755]
external/libpng/src/tests/pngvalid-progressive-interlace-standard [new file with mode: 0755]
external/libpng/src/tests/pngvalid-progressive-interlace-transform [new file with mode: 0755]
external/libpng/src/tests/pngvalid-progressive-standard [new file with mode: 0755]
external/libpng/src/tests/pngvalid-standard [new file with mode: 0755]
external/libpng_original/CMakeLists.txt [new file with mode: 0644]
external/libpng_original/packages/extracted [new file with mode: 0644]
external/libpng_original/packages/libpng-1.6.27.tar.gz [new file with mode: 0644]
external/libpng_original/src/ANNOUNCE [new file with mode: 0644]
external/libpng_original/src/CHANGES [new file with mode: 0644]
external/libpng_original/src/CMakeLists.txt [new file with mode: 0644]
external/libpng_original/src/INSTALL [new file with mode: 0644]
external/libpng_original/src/LICENSE [new file with mode: 0644]
external/libpng_original/src/Makefile.am [new file with mode: 0644]
external/libpng_original/src/Makefile.in [new file with mode: 0644]
external/libpng_original/src/README [new file with mode: 0644]
external/libpng_original/src/TODO [new file with mode: 0644]
external/libpng_original/src/aclocal.m4 [new file with mode: 0644]
external/libpng_original/src/arm/arm_init.c [new file with mode: 0644]
external/libpng_original/src/arm/filter_neon.S [new file with mode: 0644]
external/libpng_original/src/arm/filter_neon_intrinsics.c [new file with mode: 0644]
external/libpng_original/src/autogen.sh [new file with mode: 0755]
external/libpng_original/src/compile [new file with mode: 0755]
external/libpng_original/src/config.guess [new file with mode: 0755]
external/libpng_original/src/config.h.in [new file with mode: 0644]
external/libpng_original/src/config.sub [new file with mode: 0755]
external/libpng_original/src/configure [new file with mode: 0755]
external/libpng_original/src/configure.ac [new file with mode: 0644]
external/libpng_original/src/contrib/README.txt [new file with mode: 0644]
external/libpng_original/src/contrib/arm-neon/README [new file with mode: 0644]
external/libpng_original/src/contrib/arm-neon/android-ndk.c [new file with mode: 0644]
external/libpng_original/src/contrib/arm-neon/linux-auxv.c [new file with mode: 0644]
external/libpng_original/src/contrib/arm-neon/linux.c [new file with mode: 0644]
external/libpng_original/src/contrib/conftest/README [new file with mode: 0644]
external/libpng_original/src/contrib/conftest/pngcp.dfa [new file with mode: 0644]
external/libpng_original/src/contrib/conftest/read.dfa [new file with mode: 0644]
external/libpng_original/src/contrib/conftest/s_read.dfa [new file with mode: 0644]
external/libpng_original/src/contrib/conftest/s_write.dfa [new file with mode: 0644]
external/libpng_original/src/contrib/conftest/simple.dfa [new file with mode: 0644]
external/libpng_original/src/contrib/conftest/write.dfa [new file with mode: 0644]
external/libpng_original/src/contrib/examples/README.txt [new file with mode: 0644]
external/libpng_original/src/contrib/examples/iccfrompng.c [new file with mode: 0644]
external/libpng_original/src/contrib/examples/pngpixel.c [new file with mode: 0644]
external/libpng_original/src/contrib/examples/pngtopng.c [new file with mode: 0644]
external/libpng_original/src/contrib/examples/simpleover.c [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/COPYING [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/LICENSE [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/Makefile.mingw32 [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/Makefile.sgi [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/Makefile.unx [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/Makefile.w32 [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/README [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/makevms.com [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/readpng.c [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/readpng.h [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/readpng2.c [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/readpng2.h [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/readppm.c [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/rpng-win.c [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/rpng-x.c [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/rpng2-win.c [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/rpng2-x.c [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/toucan.png [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/wpng.c [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/writepng.c [new file with mode: 0644]
external/libpng_original/src/contrib/gregbook/writepng.h [new file with mode: 0644]
external/libpng_original/src/contrib/intel/INSTALL [new file with mode: 0644]
external/libpng_original/src/contrib/intel/filter_sse2_intrinsics.c [new file with mode: 0644]
external/libpng_original/src/contrib/intel/intel_init.c [new file with mode: 0644]
external/libpng_original/src/contrib/intel/intel_sse.patch [new file with mode: 0644]
external/libpng_original/src/contrib/libtests/fakepng.c [new file with mode: 0644]
external/libpng_original/src/contrib/libtests/gentests.sh [new file with mode: 0755]
external/libpng_original/src/contrib/libtests/makepng.c [new file with mode: 0644]
external/libpng_original/src/contrib/libtests/pngimage.c [new file with mode: 0644]
external/libpng_original/src/contrib/libtests/pngstest-errors.h [new file with mode: 0644]
external/libpng_original/src/contrib/libtests/pngstest.c [new file with mode: 0644]
external/libpng_original/src/contrib/libtests/pngunknown.c [new file with mode: 0644]
external/libpng_original/src/contrib/libtests/pngvalid.c [new file with mode: 0644]
external/libpng_original/src/contrib/libtests/readpng.c [new file with mode: 0644]
external/libpng_original/src/contrib/libtests/tarith.c [new file with mode: 0644]
external/libpng_original/src/contrib/libtests/timepng.c [new file with mode: 0644]
external/libpng_original/src/contrib/mips-msa/README [new file with mode: 0644]
external/libpng_original/src/contrib/mips-msa/linux.c [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/README [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/decoder/README [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/decoder/makefile [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/decoder/pngusr.dfa [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/decoder/pngusr.h [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/encoder/README [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/encoder/makefile [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/encoder/pngusr.dfa [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/encoder/pngusr.h [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/preader/README [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/preader/makefile [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/preader/pngusr.dfa [new file with mode: 0644]
external/libpng_original/src/contrib/pngminim/preader/pngusr.h [new file with mode: 0644]
external/libpng_original/src/contrib/pngminus/README [new file with mode: 0644]
external/libpng_original/src/contrib/pngminus/makefile.std [new file with mode: 0644]
external/libpng_original/src/contrib/pngminus/makefile.tc3 [new file with mode: 0644]
external/libpng_original/src/contrib/pngminus/makevms.com [new file with mode: 0644]
external/libpng_original/src/contrib/pngminus/png2pnm.bat [new file with mode: 0755]
external/libpng_original/src/contrib/pngminus/png2pnm.c [new file with mode: 0644]
external/libpng_original/src/contrib/pngminus/png2pnm.sh [new file with mode: 0755]
external/libpng_original/src/contrib/pngminus/pngminus.bat [new file with mode: 0755]
external/libpng_original/src/contrib/pngminus/pngminus.sh [new file with mode: 0755]
external/libpng_original/src/contrib/pngminus/pnm2png.bat [new file with mode: 0755]
external/libpng_original/src/contrib/pngminus/pnm2png.c [new file with mode: 0644]
external/libpng_original/src/contrib/pngminus/pnm2png.sh [new file with mode: 0755]
external/libpng_original/src/contrib/pngsuite/README [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn0g01.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn0g02.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn0g04.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn0g08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn0g16.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn2c08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn2c16.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn3p01.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn3p02.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn3p04.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn3p08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn4a08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn4a16.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn6a08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/basn6a16.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftbbn0g01.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftbbn0g02.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftbbn0g04.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftbbn2c16.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftbbn3p08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftbgn2c16.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftbgn3p08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftbrn2c08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftbwn0g16.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftbwn3p08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftbyn3p08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftp0n0g08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftp0n2c08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftp0n3p08.png [new file with mode: 0644]
external/libpng_original/src/contrib/pngsuite/ftp1n3p08.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-1-1.8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-1-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-1-linear-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-1-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-1-sRGB-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-1-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-1-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-1.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-16-1.8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-16-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-16-linear-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-16-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-16-sRGB-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-16-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-16-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-16.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-2-1.8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-2-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-2-linear-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-2-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-2-sRGB-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-2-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-2-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-2.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-4-1.8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-4-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-4-linear-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-4-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-4-sRGB-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-4-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-4-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-4.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-8-1.8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-8-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-8-linear-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-8-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-8-sRGB-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-8-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-alpha-16-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-alpha-16-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-alpha-16-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-alpha-16.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-alpha-8-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-alpha-8-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-alpha-8-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/gray-alpha-8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/makepngs.sh [new file with mode: 0755]
external/libpng_original/src/contrib/testpngs/palette-1-1.8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-1-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-1-linear-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-1-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-1-sRGB-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-1-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-1-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-1.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-2-1.8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-2-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-2-linear-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-2-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-2-sRGB-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-2-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-2-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-2.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-4-1.8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-4-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-4-linear-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-4-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-4-sRGB-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-4-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-4-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-4.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-8-1.8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-8-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-8-linear-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-8-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-8-sRGB-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-8-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/palette-8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-16-1.8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-16-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-16-linear-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-16-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-16-sRGB-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-16-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-16-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-16.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-8-1.8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-8-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-8-linear-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-8-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-8-sRGB-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-8-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-8-tRNS.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-alpha-16-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-alpha-16-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-alpha-16-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-alpha-16.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-alpha-8-1.8.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-alpha-8-linear.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-alpha-8-sRGB.png [new file with mode: 0644]
external/libpng_original/src/contrib/testpngs/rgb-alpha-8.png [new file with mode: 0644]
external/libpng_original/src/contrib/tools/README.txt [new file with mode: 0644]
external/libpng_original/src/contrib/tools/checksum-icc.c [new file with mode: 0644]
external/libpng_original/src/contrib/tools/chkfmt [new file with mode: 0755]
external/libpng_original/src/contrib/tools/cvtcolor.c [new file with mode: 0644]
external/libpng_original/src/contrib/tools/genpng.c [new file with mode: 0644]
external/libpng_original/src/contrib/tools/intgamma.sh [new file with mode: 0755]
external/libpng_original/src/contrib/tools/makesRGB.c [new file with mode: 0644]
external/libpng_original/src/contrib/tools/png-fix-itxt.c [new file with mode: 0644]
external/libpng_original/src/contrib/tools/pngcp.c [new file with mode: 0644]
external/libpng_original/src/contrib/tools/pngfix.c [new file with mode: 0644]
external/libpng_original/src/contrib/tools/reindent [new file with mode: 0755]
external/libpng_original/src/contrib/tools/sRGB.h [new file with mode: 0644]
external/libpng_original/src/contrib/visupng/PngFile.c [new file with mode: 0644]
external/libpng_original/src/contrib/visupng/PngFile.h [new file with mode: 0644]
external/libpng_original/src/contrib/visupng/README.txt [new file with mode: 0644]
external/libpng_original/src/contrib/visupng/VisualPng.c [new file with mode: 0644]
external/libpng_original/src/contrib/visupng/VisualPng.dsp [new file with mode: 0644]
external/libpng_original/src/contrib/visupng/VisualPng.dsw [new file with mode: 0644]
external/libpng_original/src/contrib/visupng/VisualPng.ico [new file with mode: 0644]
external/libpng_original/src/contrib/visupng/VisualPng.png [new file with mode: 0644]
external/libpng_original/src/contrib/visupng/VisualPng.rc [new file with mode: 0644]
external/libpng_original/src/contrib/visupng/cexcept.h [new file with mode: 0644]
external/libpng_original/src/contrib/visupng/resource.h [new file with mode: 0644]
external/libpng_original/src/depcomp [new file with mode: 0755]
external/libpng_original/src/example.c [new file with mode: 0644]
external/libpng_original/src/install-sh [new file with mode: 0755]
external/libpng_original/src/libpng-config.in [new file with mode: 0644]
external/libpng_original/src/libpng-manual.txt [new file with mode: 0644]
external/libpng_original/src/libpng.3 [new file with mode: 0644]
external/libpng_original/src/libpng.pc.in [new file with mode: 0644]
external/libpng_original/src/libpngpf.3 [new file with mode: 0644]
external/libpng_original/src/ltmain.sh [new file with mode: 0644]
external/libpng_original/src/mips/filter_msa_intrinsics.c [new file with mode: 0644]
external/libpng_original/src/mips/mips_init.c [new file with mode: 0644]
external/libpng_original/src/missing [new file with mode: 0755]
external/libpng_original/src/png.5 [new file with mode: 0644]
external/libpng_original/src/png.c [new file with mode: 0644]
external/libpng_original/src/png.h [new file with mode: 0644]
external/libpng_original/src/pngbar.jpg [new file with mode: 0644]
external/libpng_original/src/pngbar.png [new file with mode: 0644]
external/libpng_original/src/pngconf.h [new file with mode: 0644]
external/libpng_original/src/pngdebug.h [new file with mode: 0644]
external/libpng_original/src/pngerror.c [new file with mode: 0644]
external/libpng_original/src/pngget.c [new file with mode: 0644]
external/libpng_original/src/pnginfo.h [new file with mode: 0644]
external/libpng_original/src/pnglibconf.h [new file with mode: 0644]
external/libpng_original/src/pngmem.c [new file with mode: 0644]
external/libpng_original/src/pngnow.png [new file with mode: 0644]
external/libpng_original/src/pngpread.c [new file with mode: 0644]
external/libpng_original/src/pngpriv.h [new file with mode: 0644]
external/libpng_original/src/pngread.c [new file with mode: 0644]
external/libpng_original/src/pngrio.c [new file with mode: 0644]
external/libpng_original/src/pngrtran.c [new file with mode: 0644]
external/libpng_original/src/pngrutil.c [new file with mode: 0644]
external/libpng_original/src/pngset.c [new file with mode: 0644]
external/libpng_original/src/pngstruct.h [new file with mode: 0644]
external/libpng_original/src/pngtest.c [new file with mode: 0644]
external/libpng_original/src/pngtest.png [new file with mode: 0644]
external/libpng_original/src/pngtrans.c [new file with mode: 0644]
external/libpng_original/src/pngusr.dfa [new file with mode: 0644]
external/libpng_original/src/pngwio.c [new file with mode: 0644]
external/libpng_original/src/pngwrite.c [new file with mode: 0644]
external/libpng_original/src/pngwtran.c [new file with mode: 0644]
external/libpng_original/src/pngwutil.c [new file with mode: 0644]
external/libpng_original/src/projects/owatcom/libpng.tgt [new file with mode: 0644]
external/libpng_original/src/projects/owatcom/libpng.wpj [new file with mode: 0644]
external/libpng_original/src/projects/owatcom/pngconfig.mak [new file with mode: 0644]
external/libpng_original/src/projects/owatcom/pngstest.tgt [new file with mode: 0644]
external/libpng_original/src/projects/owatcom/pngtest.tgt [new file with mode: 0644]
external/libpng_original/src/projects/owatcom/pngvalid.tgt [new file with mode: 0644]
external/libpng_original/src/projects/visualc71/PRJ0041.mak [new file with mode: 0644]
external/libpng_original/src/projects/visualc71/README.txt [new file with mode: 0644]
external/libpng_original/src/projects/visualc71/README_zlib.txt [new file with mode: 0644]
external/libpng_original/src/projects/visualc71/libpng.sln [new file with mode: 0644]
external/libpng_original/src/projects/visualc71/libpng.vcproj [new file with mode: 0644]
external/libpng_original/src/projects/visualc71/pngtest.vcproj [new file with mode: 0644]
external/libpng_original/src/projects/visualc71/zlib.vcproj [new file with mode: 0644]
external/libpng_original/src/projects/vstudio/README.txt [new file with mode: 0644]
external/libpng_original/src/projects/vstudio/libpng/libpng.vcxproj [new file with mode: 0644]
external/libpng_original/src/projects/vstudio/pnglibconf/pnglibconf.vcxproj [new file with mode: 0644]
external/libpng_original/src/projects/vstudio/pngstest/pngstest.vcxproj [new file with mode: 0644]
external/libpng_original/src/projects/vstudio/pngtest/pngtest.vcxproj [new file with mode: 0644]
external/libpng_original/src/projects/vstudio/pngunknown/pngunknown.vcxproj [new file with mode: 0644]
external/libpng_original/src/projects/vstudio/pngvalid/pngvalid.vcxproj [new file with mode: 0644]
external/libpng_original/src/projects/vstudio/vstudio.sln [new file with mode: 0644]
external/libpng_original/src/projects/vstudio/zlib.props [new file with mode: 0644]
external/libpng_original/src/projects/vstudio/zlib/zlib.vcxproj [new file with mode: 0644]
external/libpng_original/src/scripts/README.txt [new file with mode: 0644]
external/libpng_original/src/scripts/SCOPTIONS.ppc [new file with mode: 0644]
external/libpng_original/src/scripts/checksym.awk [new file with mode: 0755]
external/libpng_original/src/scripts/def.c [new file with mode: 0644]
external/libpng_original/src/scripts/descrip.mms [new file with mode: 0644]
external/libpng_original/src/scripts/dfn.awk [new file with mode: 0755]
external/libpng_original/src/scripts/genchk.cmake.in [new file with mode: 0644]
external/libpng_original/src/scripts/genout.cmake.in [new file with mode: 0644]
external/libpng_original/src/scripts/gensrc.cmake.in [new file with mode: 0644]
external/libpng_original/src/scripts/intprefix.c [new file with mode: 0644]
external/libpng_original/src/scripts/libpng-config-body.in [new file with mode: 0644]
external/libpng_original/src/scripts/libpng-config-head.in [new file with mode: 0644]
external/libpng_original/src/scripts/libpng.pc.in [new file with mode: 0644]
external/libpng_original/src/scripts/libtool.m4 [new file with mode: 0644]
external/libpng_original/src/scripts/ltoptions.m4 [new file with mode: 0644]
external/libpng_original/src/scripts/ltsugar.m4 [new file with mode: 0644]
external/libpng_original/src/scripts/ltversion.m4 [new file with mode: 0644]
external/libpng_original/src/scripts/lt~obsolete.m4 [new file with mode: 0644]
external/libpng_original/src/scripts/macro.lst [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.32sunu [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.64sunu [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.acorn [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.aix [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.amiga [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.atari [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.bc32 [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.beos [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.bor [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.cegcc [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.darwin [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.dec [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.dj2 [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.freebsd [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.gcc [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.hp64 [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.hpgcc [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.hpux [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.ibmc [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.intel [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.knr [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.linux [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.mips [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.msc [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.msys [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.ne12bsd [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.netbsd [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.openbsd [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.sco [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.sggcc [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.sgi [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.so9 [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.solaris [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.solaris-x86 [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.std [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.sunos [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.tc3 [new file with mode: 0644]
external/libpng_original/src/scripts/makefile.vcwin32 [new file with mode: 0644]
external/libpng_original/src/scripts/makevms.com [new file with mode: 0644]
external/libpng_original/src/scripts/options.awk [new file with mode: 0755]
external/libpng_original/src/scripts/pnglibconf.dfa [new file with mode: 0644]
external/libpng_original/src/scripts/pnglibconf.h.prebuilt [new file with mode: 0644]
external/libpng_original/src/scripts/pnglibconf.mak [new file with mode: 0755]
external/libpng_original/src/scripts/pngwin.rc [new file with mode: 0644]
external/libpng_original/src/scripts/prefix.c [new file with mode: 0644]
external/libpng_original/src/scripts/smakefile.ppc [new file with mode: 0644]
external/libpng_original/src/scripts/sym.c [new file with mode: 0644]
external/libpng_original/src/scripts/symbols.c [new file with mode: 0644]
external/libpng_original/src/scripts/symbols.def [new file with mode: 0644]
external/libpng_original/src/scripts/test.cmake.in [new file with mode: 0644]
external/libpng_original/src/scripts/vers.c [new file with mode: 0644]
external/libpng_original/src/test-driver [new file with mode: 0755]
external/libpng_original/src/tests/badadler.png [new file with mode: 0644]
external/libpng_original/src/tests/badcrc.png [new file with mode: 0644]
external/libpng_original/src/tests/pngimage-full [new file with mode: 0755]
external/libpng_original/src/tests/pngimage-quick [new file with mode: 0755]
external/libpng_original/src/tests/pngstest [new file with mode: 0755]
external/libpng_original/src/tests/pngstest-1.8 [new file with mode: 0755]
external/libpng_original/src/tests/pngstest-1.8-alpha [new file with mode: 0755]
external/libpng_original/src/tests/pngstest-linear [new file with mode: 0755]
external/libpng_original/src/tests/pngstest-linear-alpha [new file with mode: 0755]
external/libpng_original/src/tests/pngstest-none [new file with mode: 0755]
external/libpng_original/src/tests/pngstest-none-alpha [new file with mode: 0755]
external/libpng_original/src/tests/pngstest-sRGB [new file with mode: 0755]
external/libpng_original/src/tests/pngstest-sRGB-alpha [new file with mode: 0755]
external/libpng_original/src/tests/pngtest [new file with mode: 0755]
external/libpng_original/src/tests/pngunknown-IDAT [new file with mode: 0755]
external/libpng_original/src/tests/pngunknown-discard [new file with mode: 0755]
external/libpng_original/src/tests/pngunknown-if-safe [new file with mode: 0755]
external/libpng_original/src/tests/pngunknown-sAPI [new file with mode: 0755]
external/libpng_original/src/tests/pngunknown-sTER [new file with mode: 0755]
external/libpng_original/src/tests/pngunknown-save [new file with mode: 0755]
external/libpng_original/src/tests/pngunknown-vpAg [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-gamma-16-to-8 [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-gamma-alpha-mode [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-gamma-background [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-gamma-expand16-alpha-mode [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-gamma-expand16-background [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-gamma-expand16-transform [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-gamma-sbit [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-gamma-threshold [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-gamma-transform [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-progressive-interlace-standard [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-progressive-size [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-progressive-standard [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-standard [new file with mode: 0755]
external/libpng_original/src/tests/pngvalid-transform [new file with mode: 0755]
external/openglcts/.gitignore [deleted file]
external/spirv-headers/src/CMakeLists.txt [new file with mode: 0644]
external/spirv-headers/src/LICENSE [new file with mode: 0644]
external/spirv-headers/src/README.md [new file with mode: 0644]
external/spirv-headers/src/example/CMakeLists.txt [new file with mode: 0644]
external/spirv-headers/src/example/example-1.1.cpp [new file with mode: 0644]
external/spirv-headers/src/example/example.cpp [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.0/GLSL.std.450.h [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.0/OpenCL.std.h [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.0/extinst.glsl.std.450.grammar.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.0/extinst.opencl.std.100.grammar.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.0/spirv.core.grammar.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.0/spirv.h [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.0/spirv.hpp [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.0/spirv.hpp11 [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.0/spirv.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.0/spirv.lua [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.0/spirv.py [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.1/GLSL.std.450.h [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.1/OpenCL.std.h [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.1/extinst.glsl.std.450.grammar.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.1/extinst.opencl.std.100.grammar.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.1/spirv.core.grammar.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.1/spirv.h [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.1/spirv.hpp [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.1/spirv.hpp11 [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.1/spirv.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.1/spirv.lua [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.1/spirv.py [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.2/GLSL.std.450.h [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.2/OpenCL.std.h [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.2/extinst.glsl.std.450.grammar.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.2/extinst.opencl.std.100.grammar.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.2/spirv.core.grammar.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.2/spirv.h [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.2/spirv.hpp [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.2/spirv.hpp11 [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.2/spirv.json [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.2/spirv.lua [new file with mode: 0644]
external/spirv-headers/src/include/spirv/1.2/spirv.py [new file with mode: 0755]
external/spirv-headers/src/include/spirv/spir-v.xml [new file with mode: 0644]
external/spirv-tools/.gitignore [deleted file]
external/spirv-tools/src/.appveyor.yml [new file with mode: 0644]
external/spirv-tools/src/.clang-format [new file with mode: 0644]
external/spirv-tools/src/.travis.yml [new file with mode: 0644]
external/spirv-tools/src/CHANGES [new file with mode: 0644]
external/spirv-tools/src/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/LICENSE [new file with mode: 0644]
external/spirv-tools/src/README.md [new file with mode: 0644]
external/spirv-tools/src/examples/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/examples/cpp-interface/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/examples/cpp-interface/main.cpp [new file with mode: 0644]
external/spirv-tools/src/external/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/include/spirv-tools/libspirv.h [new file with mode: 0644]
external/spirv-tools/src/include/spirv-tools/libspirv.hpp [new file with mode: 0644]
external/spirv-tools/src/include/spirv-tools/optimizer.hpp [new file with mode: 0644]
external/spirv-tools/src/projects.md [new file with mode: 0644]
external/spirv-tools/src/source/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/source/assembly_grammar.cpp [new file with mode: 0644]
external/spirv-tools/src/source/assembly_grammar.h [new file with mode: 0644]
external/spirv-tools/src/source/binary.cpp [new file with mode: 0644]
external/spirv-tools/src/source/binary.h [new file with mode: 0644]
external/spirv-tools/src/source/cfa.h [new file with mode: 0644]
external/spirv-tools/src/source/diagnostic.cpp [new file with mode: 0644]
external/spirv-tools/src/source/diagnostic.h [new file with mode: 0644]
external/spirv-tools/src/source/disassemble.cpp [new file with mode: 0644]
external/spirv-tools/src/source/enum_set.h [new file with mode: 0644]
external/spirv-tools/src/source/enum_string_mapping.cpp [new file with mode: 0644]
external/spirv-tools/src/source/enum_string_mapping.h [new file with mode: 0644]
external/spirv-tools/src/source/ext_inst.cpp [new file with mode: 0644]
external/spirv-tools/src/source/ext_inst.h [new file with mode: 0644]
external/spirv-tools/src/source/extensions.cpp [new file with mode: 0644]
external/spirv-tools/src/source/extensions.h [new file with mode: 0644]
external/spirv-tools/src/source/extinst.spv-amd-gcn-shader.grammar.json [new file with mode: 0644]
external/spirv-tools/src/source/extinst.spv-amd-shader-ballot.grammar.json [new file with mode: 0644]
external/spirv-tools/src/source/extinst.spv-amd-shader-explicit-vertex-parameter.grammar.json [new file with mode: 0644]
external/spirv-tools/src/source/extinst.spv-amd-shader-trinary-minmax.grammar.json [new file with mode: 0644]
external/spirv-tools/src/source/instruction.h [new file with mode: 0644]
external/spirv-tools/src/source/libspirv.cpp [new file with mode: 0644]
external/spirv-tools/src/source/macro.h [new file with mode: 0644]
external/spirv-tools/src/source/message.cpp [new file with mode: 0644]
external/spirv-tools/src/source/message.h [new file with mode: 0644]
external/spirv-tools/src/source/name_mapper.cpp [new file with mode: 0644]
external/spirv-tools/src/source/name_mapper.h [new file with mode: 0644]
external/spirv-tools/src/source/opcode.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opcode.h [new file with mode: 0644]
external/spirv-tools/src/source/operand.cpp [new file with mode: 0644]
external/spirv-tools/src/source/operand.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/source/opt/basic_block.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/basic_block.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/build_module.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/build_module.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/compact_ids_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/compact_ids_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/constants.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/def_use_manager.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/def_use_manager.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/eliminate_dead_constant_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/eliminate_dead_constant_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/flatten_decoration_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/flatten_decoration_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/fold_spec_constant_op_and_composite_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/fold_spec_constant_op_and_composite_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/freeze_spec_constant_value_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/freeze_spec_constant_value_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/function.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/function.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/inline_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/inline_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/insert_extract_elim.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/insert_extract_elim.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/instruction.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/instruction.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/ir_loader.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/ir_loader.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/iterator.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/local_access_chain_convert_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/local_access_chain_convert_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/local_single_block_elim_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/local_single_block_elim_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/local_single_store_elim_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/local_single_store_elim_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/log.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/make_unique.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/module.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/module.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/null_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/optimizer.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/pass_manager.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/pass_manager.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/passes.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/reflect.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/set_spec_constant_default_value_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/set_spec_constant_default_value_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/strip_debug_info_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/strip_debug_info_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/type_manager.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/type_manager.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/types.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/types.h [new file with mode: 0644]
external/spirv-tools/src/source/opt/unify_const_pass.cpp [new file with mode: 0644]
external/spirv-tools/src/source/opt/unify_const_pass.h [new file with mode: 0644]
external/spirv-tools/src/source/parsed_operand.cpp [new file with mode: 0644]
external/spirv-tools/src/source/parsed_operand.h [new file with mode: 0644]
external/spirv-tools/src/source/print.cpp [new file with mode: 0644]
external/spirv-tools/src/source/print.h [new file with mode: 0644]
external/spirv-tools/src/source/software_version.cpp [new file with mode: 0644]
external/spirv-tools/src/source/spirv_constant.h [new file with mode: 0644]
external/spirv-tools/src/source/spirv_definition.h [new file with mode: 0644]
external/spirv-tools/src/source/spirv_endian.cpp [new file with mode: 0644]
external/spirv-tools/src/source/spirv_endian.h [new file with mode: 0644]
external/spirv-tools/src/source/spirv_stats.cpp [new file with mode: 0644]
external/spirv-tools/src/source/spirv_stats.h [new file with mode: 0644]
external/spirv-tools/src/source/spirv_target_env.cpp [new file with mode: 0644]
external/spirv-tools/src/source/spirv_target_env.h [new file with mode: 0644]
external/spirv-tools/src/source/spirv_validator_options.cpp [new file with mode: 0644]
external/spirv-tools/src/source/spirv_validator_options.h [new file with mode: 0644]
external/spirv-tools/src/source/table.cpp [new file with mode: 0644]
external/spirv-tools/src/source/table.h [new file with mode: 0644]
external/spirv-tools/src/source/text.cpp [new file with mode: 0644]
external/spirv-tools/src/source/text.h [new file with mode: 0644]
external/spirv-tools/src/source/text_handler.cpp [new file with mode: 0644]
external/spirv-tools/src/source/text_handler.h [new file with mode: 0644]
external/spirv-tools/src/source/util/bit_stream.cpp [new file with mode: 0644]
external/spirv-tools/src/source/util/bit_stream.h [new file with mode: 0644]
external/spirv-tools/src/source/util/bitutils.h [new file with mode: 0644]
external/spirv-tools/src/source/util/hex_float.h [new file with mode: 0644]
external/spirv-tools/src/source/util/parse_number.cpp [new file with mode: 0644]
external/spirv-tools/src/source/util/parse_number.h [new file with mode: 0644]
external/spirv-tools/src/source/util/string_utils.cpp [new file with mode: 0644]
external/spirv-tools/src/source/util/string_utils.h [new file with mode: 0644]
external/spirv-tools/src/source/val/basic_block.cpp [new file with mode: 0644]
external/spirv-tools/src/source/val/basic_block.h [new file with mode: 0644]
external/spirv-tools/src/source/val/construct.cpp [new file with mode: 0644]
external/spirv-tools/src/source/val/construct.h [new file with mode: 0644]
external/spirv-tools/src/source/val/decoration.h [new file with mode: 0644]
external/spirv-tools/src/source/val/function.cpp [new file with mode: 0644]
external/spirv-tools/src/source/val/function.h [new file with mode: 0644]
external/spirv-tools/src/source/val/instruction.cpp [new file with mode: 0644]
external/spirv-tools/src/source/val/instruction.h [new file with mode: 0644]
external/spirv-tools/src/source/val/validation_state.cpp [new file with mode: 0644]
external/spirv-tools/src/source/val/validation_state.h [new file with mode: 0644]
external/spirv-tools/src/source/validate.cpp [new file with mode: 0644]
external/spirv-tools/src/source/validate.h [new file with mode: 0644]
external/spirv-tools/src/source/validate_capability.cpp [new file with mode: 0644]
external/spirv-tools/src/source/validate_cfg.cpp [new file with mode: 0644]
external/spirv-tools/src/source/validate_datarules.cpp [new file with mode: 0644]
external/spirv-tools/src/source/validate_decorations.cpp [new file with mode: 0644]
external/spirv-tools/src/source/validate_id.cpp [new file with mode: 0644]
external/spirv-tools/src/source/validate_instruction.cpp [new file with mode: 0644]
external/spirv-tools/src/source/validate_layout.cpp [new file with mode: 0644]
external/spirv-tools/src/source/validate_type_unique.cpp [new file with mode: 0644]
external/spirv-tools/src/syntax.md [new file with mode: 0644]
external/spirv-tools/src/test/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/test/assembly_context_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/assembly_format_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/binary_destroy_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/binary_endianness_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/binary_header_get_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/binary_parse_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/binary_strnlen_s_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/binary_to_text.literal_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/binary_to_text_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/bit_stream.cpp [new file with mode: 0644]
external/spirv-tools/src/test/c_interface_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/comment_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/cpp_interface_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/diagnostic_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/enum_set_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/enum_string_mapping_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/ext_inst.glsl_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/ext_inst.opencl_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/fix_word_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/generator_magic_number_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/hex_float_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/immediate_int_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/libspirv_macros_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/log_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/name_mapper_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/named_id_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opcode_make_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opcode_require_capabilities_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opcode_split_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opcode_table_get_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/operand-class-test-coverage.csv [new file with mode: 0644]
external/spirv-tools/src/test/operand_capabilities_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/operand_pattern_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/operand_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/test/opt/assembly_builder.h [new file with mode: 0644]
external/spirv-tools/src/test/opt/assembly_builder_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/compact_ids_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/def_use_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/eliminate_dead_const_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/flatten_decoration_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/fold_spec_const_op_composite_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/freeze_spec_const_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/inline_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/insert_extract_elim_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/instruction_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/ir_loader_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/iterator_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/line_debug_info_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/local_access_chain_convert_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/local_single_block_elim.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/local_single_store_elim_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/module_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/module_utils.h [new file with mode: 0644]
external/spirv-tools/src/test/opt/optimizer_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/pass_fixture.h [new file with mode: 0644]
external/spirv-tools/src/test/opt/pass_manager_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/pass_utils.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/pass_utils.h [new file with mode: 0644]
external/spirv-tools/src/test/opt/set_spec_const_default_value_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/strip_debug_info_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/type_manager_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/types_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/unify_const_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/opt/utils_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/parse_number_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/preserve_numeric_ids_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/scripts/test_compact_ids.py [new file with mode: 0644]
external/spirv-tools/src/test/software_version_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/stats/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/test/stats/stats_aggregate_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/stats/stats_analyzer_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/string_utils_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/target_env_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/test_fixture.h [new file with mode: 0644]
external/spirv-tools/src/test/text_advance_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_destroy_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_literal_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_start_new_inst_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.annotation_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.barrier_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.constant_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.control_flow_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.debug_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.device_side_enqueue_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.extension_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.function_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.group_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.image_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.literal_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.memory_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.misc_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.mode_setting_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.pipe_storage_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.subgroup_dispatch_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary.type_declaration_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_to_binary_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/text_word_get_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/unit_spirv.cpp [new file with mode: 0644]
external/spirv-tools/src/test/unit_spirv.h [new file with mode: 0644]
external/spirv-tools/src/test/val/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/test/val/val_capability_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_cfg_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_data_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_decoration_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_extensions_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_fixtures.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_fixtures.h [new file with mode: 0644]
external/spirv-tools/src/test/val/val_id_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_instructions_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_layout_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_limits_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_ssa_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_state_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_storage_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_type_unique_test.cpp [new file with mode: 0644]
external/spirv-tools/src/test/val/val_validation_state_test.cpp [new file with mode: 0644]
external/spirv-tools/src/tools/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/tools/as/as.cpp [new file with mode: 0644]
external/spirv-tools/src/tools/cfg/bin_to_dot.cpp [new file with mode: 0644]
external/spirv-tools/src/tools/cfg/bin_to_dot.h [new file with mode: 0644]
external/spirv-tools/src/tools/cfg/cfg.cpp [new file with mode: 0644]
external/spirv-tools/src/tools/dis/dis.cpp [new file with mode: 0644]
external/spirv-tools/src/tools/emacs/50spirv-tools.el [new file with mode: 0644]
external/spirv-tools/src/tools/emacs/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/tools/io.h [new file with mode: 0644]
external/spirv-tools/src/tools/lesspipe/CMakeLists.txt [new file with mode: 0644]
external/spirv-tools/src/tools/lesspipe/spirv-lesspipe.sh [new file with mode: 0644]
external/spirv-tools/src/tools/opt/opt.cpp [new file with mode: 0644]
external/spirv-tools/src/tools/stats/stats.cpp [new file with mode: 0644]
external/spirv-tools/src/tools/stats/stats_analyzer.cpp [new file with mode: 0644]
external/spirv-tools/src/tools/stats/stats_analyzer.h [new file with mode: 0644]
external/spirv-tools/src/tools/val/val.cpp [new file with mode: 0644]
external/spirv-tools/src/utils/check_copyright.py [new file with mode: 0755]
external/spirv-tools/src/utils/generate_grammar_tables.py [new file with mode: 0755]
external/spirv-tools/src/utils/generate_registry_tables.py [new file with mode: 0755]
external/spirv-tools/src/utils/generate_vim_syntax.py [new file with mode: 0755]
external/spirv-tools/src/utils/update_build_version.py [new file with mode: 0755]
external/vulkancts/data/vulkan/.gitignore [deleted file]
external/vulkancts/mustpass/.gitignore [deleted file]
external/zlib/.gitignore [deleted file]
external/zlib/packages/extracted [new file with mode: 0644]
external/zlib/packages/zlib-1.2.11.tar.gz [new file with mode: 0644]
external/zlib/src/CMakeLists.txt [new file with mode: 0644]
external/zlib/src/ChangeLog [new file with mode: 0644]
external/zlib/src/FAQ [new file with mode: 0644]
external/zlib/src/INDEX [new file with mode: 0644]
external/zlib/src/Makefile [new file with mode: 0644]
external/zlib/src/Makefile.in [new file with mode: 0644]
external/zlib/src/README [new file with mode: 0644]
external/zlib/src/adler32.c [new file with mode: 0644]
external/zlib/src/amiga/Makefile.pup [new file with mode: 0644]
external/zlib/src/amiga/Makefile.sas [new file with mode: 0644]
external/zlib/src/compress.c [new file with mode: 0644]
external/zlib/src/configure [new file with mode: 0755]
external/zlib/src/contrib/README.contrib [new file with mode: 0644]
external/zlib/src/contrib/ada/buffer_demo.adb [new file with mode: 0644]
external/zlib/src/contrib/ada/mtest.adb [new file with mode: 0644]
external/zlib/src/contrib/ada/read.adb [new file with mode: 0644]
external/zlib/src/contrib/ada/readme.txt [new file with mode: 0644]
external/zlib/src/contrib/ada/test.adb [new file with mode: 0644]
external/zlib/src/contrib/ada/zlib-streams.adb [new file with mode: 0644]
external/zlib/src/contrib/ada/zlib-streams.ads [new file with mode: 0644]
external/zlib/src/contrib/ada/zlib-thin.adb [new file with mode: 0644]
external/zlib/src/contrib/ada/zlib-thin.ads [new file with mode: 0644]
external/zlib/src/contrib/ada/zlib.adb [new file with mode: 0644]
external/zlib/src/contrib/ada/zlib.ads [new file with mode: 0644]
external/zlib/src/contrib/ada/zlib.gpr [new file with mode: 0644]
external/zlib/src/contrib/amd64/amd64-match.S [new file with mode: 0644]
external/zlib/src/contrib/asm686/README.686 [new file with mode: 0644]
external/zlib/src/contrib/asm686/match.S [new file with mode: 0644]
external/zlib/src/contrib/blast/Makefile [new file with mode: 0644]
external/zlib/src/contrib/blast/README [new file with mode: 0644]
external/zlib/src/contrib/blast/blast.c [new file with mode: 0644]
external/zlib/src/contrib/blast/blast.h [new file with mode: 0644]
external/zlib/src/contrib/blast/test.pk [new file with mode: 0644]
external/zlib/src/contrib/blast/test.txt [new file with mode: 0644]
external/zlib/src/contrib/delphi/ZLib.pas [new file with mode: 0644]
external/zlib/src/contrib/delphi/ZLibConst.pas [new file with mode: 0644]
external/zlib/src/contrib/delphi/readme.txt [new file with mode: 0644]
external/zlib/src/contrib/delphi/zlibd32.mak [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib.build [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib.chm [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib.sln [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib/AssemblyInfo.cs [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib/ChecksumImpl.cs [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib/CircularBuffer.cs [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib/CodecBase.cs [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib/Deflater.cs [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib/DotZLib.cs [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib/DotZLib.csproj [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib/GZipStream.cs [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib/Inflater.cs [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/DotZLib/UnitTests.cs [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/LICENSE_1_0.txt [new file with mode: 0644]
external/zlib/src/contrib/dotzlib/readme.txt [new file with mode: 0644]
external/zlib/src/contrib/gcc_gvmat64/gvmat64.S [new file with mode: 0644]
external/zlib/src/contrib/infback9/README [new file with mode: 0644]
external/zlib/src/contrib/infback9/infback9.c [new file with mode: 0644]
external/zlib/src/contrib/infback9/infback9.h [new file with mode: 0644]
external/zlib/src/contrib/infback9/inffix9.h [new file with mode: 0644]
external/zlib/src/contrib/infback9/inflate9.h [new file with mode: 0644]
external/zlib/src/contrib/infback9/inftree9.c [new file with mode: 0644]
external/zlib/src/contrib/infback9/inftree9.h [new file with mode: 0644]
external/zlib/src/contrib/inflate86/inffas86.c [new file with mode: 0644]
external/zlib/src/contrib/inflate86/inffast.S [new file with mode: 0644]
external/zlib/src/contrib/iostream/test.cpp [new file with mode: 0644]
external/zlib/src/contrib/iostream/zfstream.cpp [new file with mode: 0644]
external/zlib/src/contrib/iostream/zfstream.h [new file with mode: 0644]
external/zlib/src/contrib/iostream2/zstream.h [new file with mode: 0644]
external/zlib/src/contrib/iostream2/zstream_test.cpp [new file with mode: 0644]
external/zlib/src/contrib/iostream3/README [new file with mode: 0644]
external/zlib/src/contrib/iostream3/TODO [new file with mode: 0644]
external/zlib/src/contrib/iostream3/test.cc [new file with mode: 0644]
external/zlib/src/contrib/iostream3/zfstream.cc [new file with mode: 0644]
external/zlib/src/contrib/iostream3/zfstream.h [new file with mode: 0644]
external/zlib/src/contrib/masmx64/bld_ml64.bat [new file with mode: 0644]
external/zlib/src/contrib/masmx64/gvmat64.asm [new file with mode: 0644]
external/zlib/src/contrib/masmx64/inffas8664.c [new file with mode: 0644]
external/zlib/src/contrib/masmx64/inffasx64.asm [new file with mode: 0644]
external/zlib/src/contrib/masmx64/readme.txt [new file with mode: 0644]
external/zlib/src/contrib/masmx86/bld_ml32.bat [new file with mode: 0644]
external/zlib/src/contrib/masmx86/inffas32.asm [new file with mode: 0644]
external/zlib/src/contrib/masmx86/match686.asm [new file with mode: 0644]
external/zlib/src/contrib/masmx86/readme.txt [new file with mode: 0644]
external/zlib/src/contrib/minizip/Makefile [new file with mode: 0644]
external/zlib/src/contrib/minizip/Makefile.am [new file with mode: 0644]
external/zlib/src/contrib/minizip/MiniZip64_Changes.txt [new file with mode: 0644]
external/zlib/src/contrib/minizip/MiniZip64_info.txt [new file with mode: 0644]
external/zlib/src/contrib/minizip/configure.ac [new file with mode: 0644]
external/zlib/src/contrib/minizip/crypt.h [new file with mode: 0644]
external/zlib/src/contrib/minizip/ioapi.c [new file with mode: 0644]
external/zlib/src/contrib/minizip/ioapi.h [new file with mode: 0644]
external/zlib/src/contrib/minizip/iowin32.c [new file with mode: 0644]
external/zlib/src/contrib/minizip/iowin32.h [new file with mode: 0644]
external/zlib/src/contrib/minizip/make_vms.com [new file with mode: 0644]
external/zlib/src/contrib/minizip/miniunz.c [new file with mode: 0644]
external/zlib/src/contrib/minizip/miniunzip.1 [new file with mode: 0644]
external/zlib/src/contrib/minizip/minizip.1 [new file with mode: 0644]
external/zlib/src/contrib/minizip/minizip.c [new file with mode: 0644]
external/zlib/src/contrib/minizip/minizip.pc.in [new file with mode: 0644]
external/zlib/src/contrib/minizip/mztools.c [new file with mode: 0644]
external/zlib/src/contrib/minizip/mztools.h [new file with mode: 0644]
external/zlib/src/contrib/minizip/unzip.c [new file with mode: 0644]
external/zlib/src/contrib/minizip/unzip.h [new file with mode: 0644]
external/zlib/src/contrib/minizip/zip.c [new file with mode: 0644]
external/zlib/src/contrib/minizip/zip.h [new file with mode: 0644]
external/zlib/src/contrib/pascal/example.pas [new file with mode: 0644]
external/zlib/src/contrib/pascal/readme.txt [new file with mode: 0644]
external/zlib/src/contrib/pascal/zlibd32.mak [new file with mode: 0644]
external/zlib/src/contrib/pascal/zlibpas.pas [new file with mode: 0644]
external/zlib/src/contrib/puff/Makefile [new file with mode: 0644]
external/zlib/src/contrib/puff/README [new file with mode: 0644]
external/zlib/src/contrib/puff/puff.c [new file with mode: 0644]
external/zlib/src/contrib/puff/puff.h [new file with mode: 0644]
external/zlib/src/contrib/puff/pufftest.c [new file with mode: 0644]
external/zlib/src/contrib/puff/zeros.raw [new file with mode: 0644]
external/zlib/src/contrib/testzlib/testzlib.c [new file with mode: 0644]
external/zlib/src/contrib/testzlib/testzlib.txt [new file with mode: 0644]
external/zlib/src/contrib/untgz/Makefile [new file with mode: 0644]
external/zlib/src/contrib/untgz/Makefile.msc [new file with mode: 0644]
external/zlib/src/contrib/untgz/untgz.c [new file with mode: 0644]
external/zlib/src/contrib/vstudio/readme.txt [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/miniunz.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/miniunz.vcxproj.filters [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/minizip.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/minizip.vcxproj.filters [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/testzlib.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/testzlib.vcxproj.filters [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/testzlibdll.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/testzlibdll.vcxproj.filters [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/zlib.rc [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/zlibstat.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/zlibstat.vcxproj.filters [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/zlibvc.def [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/zlibvc.sln [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/zlibvc.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc10/zlibvc.vcxproj.filters [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc11/miniunz.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc11/minizip.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc11/testzlib.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc11/testzlibdll.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc11/zlib.rc [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc11/zlibstat.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc11/zlibvc.def [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc11/zlibvc.sln [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc11/zlibvc.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc12/miniunz.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc12/minizip.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc12/testzlib.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc12/testzlibdll.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc12/zlib.rc [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc12/zlibstat.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc12/zlibvc.def [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc12/zlibvc.sln [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc12/zlibvc.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc14/miniunz.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc14/minizip.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc14/testzlib.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc14/testzlibdll.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc14/zlib.rc [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc14/zlibstat.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc14/zlibvc.def [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc14/zlibvc.sln [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc14/zlibvc.vcxproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc9/miniunz.vcproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc9/minizip.vcproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc9/testzlib.vcproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc9/testzlibdll.vcproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc9/zlib.rc [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc9/zlibstat.vcproj [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc9/zlibvc.def [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc9/zlibvc.sln [new file with mode: 0644]
external/zlib/src/contrib/vstudio/vc9/zlibvc.vcproj [new file with mode: 0644]
external/zlib/src/crc32.c [new file with mode: 0644]
external/zlib/src/crc32.h [new file with mode: 0644]
external/zlib/src/deflate.c [new file with mode: 0644]
external/zlib/src/deflate.h [new file with mode: 0644]
external/zlib/src/doc/algorithm.txt [new file with mode: 0644]
external/zlib/src/doc/rfc1950.txt [new file with mode: 0644]
external/zlib/src/doc/rfc1951.txt [new file with mode: 0644]
external/zlib/src/doc/rfc1952.txt [new file with mode: 0644]
external/zlib/src/doc/txtvsbin.txt [new file with mode: 0644]
external/zlib/src/examples/README.examples [new file with mode: 0644]
external/zlib/src/examples/enough.c [new file with mode: 0644]
external/zlib/src/examples/fitblk.c [new file with mode: 0644]
external/zlib/src/examples/gun.c [new file with mode: 0644]
external/zlib/src/examples/gzappend.c [new file with mode: 0644]
external/zlib/src/examples/gzjoin.c [new file with mode: 0644]
external/zlib/src/examples/gzlog.c [new file with mode: 0644]
external/zlib/src/examples/gzlog.h [new file with mode: 0644]
external/zlib/src/examples/zlib_how.html [new file with mode: 0644]
external/zlib/src/examples/zpipe.c [new file with mode: 0644]
external/zlib/src/examples/zran.c [new file with mode: 0644]
external/zlib/src/gzclose.c [new file with mode: 0644]
external/zlib/src/gzguts.h [new file with mode: 0644]
external/zlib/src/gzlib.c [new file with mode: 0644]
external/zlib/src/gzread.c [new file with mode: 0644]
external/zlib/src/gzwrite.c [new file with mode: 0644]
external/zlib/src/infback.c [new file with mode: 0644]
external/zlib/src/inffast.c [new file with mode: 0644]
external/zlib/src/inffast.h [new file with mode: 0644]
external/zlib/src/inffixed.h [new file with mode: 0644]
external/zlib/src/inflate.c [new file with mode: 0644]
external/zlib/src/inflate.h [new file with mode: 0644]
external/zlib/src/inftrees.c [new file with mode: 0644]
external/zlib/src/inftrees.h [new file with mode: 0644]
external/zlib/src/make_vms.com [new file with mode: 0644]
external/zlib/src/msdos/Makefile.bor [new file with mode: 0644]
external/zlib/src/msdos/Makefile.dj2 [new file with mode: 0644]
external/zlib/src/msdos/Makefile.emx [new file with mode: 0644]
external/zlib/src/msdos/Makefile.msc [new file with mode: 0644]
external/zlib/src/msdos/Makefile.tc [new file with mode: 0644]
external/zlib/src/nintendods/Makefile [new file with mode: 0644]
external/zlib/src/nintendods/README [new file with mode: 0644]
external/zlib/src/old/Makefile.emx [new file with mode: 0644]
external/zlib/src/old/Makefile.riscos [new file with mode: 0644]
external/zlib/src/old/README [new file with mode: 0644]
external/zlib/src/old/descrip.mms [new file with mode: 0644]
external/zlib/src/old/os2/Makefile.os2 [new file with mode: 0644]
external/zlib/src/old/os2/zlib.def [new file with mode: 0644]
external/zlib/src/old/visual-basic.txt [new file with mode: 0644]
external/zlib/src/os400/README400 [new file with mode: 0644]
external/zlib/src/os400/bndsrc [new file with mode: 0644]
external/zlib/src/os400/make.sh [new file with mode: 0644]
external/zlib/src/os400/zlib.inc [new file with mode: 0644]
external/zlib/src/qnx/package.qpg [new file with mode: 0644]
external/zlib/src/test/example.c [new file with mode: 0644]
external/zlib/src/test/infcover.c [new file with mode: 0644]
external/zlib/src/test/minigzip.c [new file with mode: 0644]
external/zlib/src/treebuild.xml [new file with mode: 0644]
external/zlib/src/trees.c [new file with mode: 0644]
external/zlib/src/trees.h [new file with mode: 0644]
external/zlib/src/uncompr.c [new file with mode: 0644]
external/zlib/src/watcom/watcom_f.mak [new file with mode: 0644]
external/zlib/src/watcom/watcom_l.mak [new file with mode: 0644]
external/zlib/src/win32/DLL_FAQ.txt [new file with mode: 0644]
external/zlib/src/win32/Makefile.bor [new file with mode: 0644]
external/zlib/src/win32/Makefile.gcc [new file with mode: 0644]
external/zlib/src/win32/Makefile.msc [new file with mode: 0644]
external/zlib/src/win32/README-WIN32.txt [new file with mode: 0644]
external/zlib/src/win32/VisualC.txt [new file with mode: 0644]
external/zlib/src/win32/zlib.def [new file with mode: 0644]
external/zlib/src/win32/zlib1.rc [new file with mode: 0644]
external/zlib/src/zconf.h [new file with mode: 0644]
external/zlib/src/zconf.h.cmakein [new file with mode: 0644]
external/zlib/src/zconf.h.in [new file with mode: 0644]
external/zlib/src/zlib.3 [new file with mode: 0644]
external/zlib/src/zlib.3.pdf [new file with mode: 0644]
external/zlib/src/zlib.h [new file with mode: 0644]
external/zlib/src/zlib.map [new file with mode: 0644]
external/zlib/src/zlib.pc.cmakein [new file with mode: 0644]
external/zlib/src/zlib.pc.in [new file with mode: 0644]
external/zlib/src/zlib2ansi [new file with mode: 0755]
external/zlib/src/zutil.c [new file with mode: 0644]
external/zlib/src/zutil.h [new file with mode: 0644]
scripts/build/__init__.pyc [new file with mode: 0644]
scripts/build/common.pyc [new file with mode: 0644]