mirror of
https://github.com/openharmony/third_party_vulkan-loader.git
synced 2026-07-18 16:14:33 -04:00
6b08b5a360
Changes: - Updated `known_good.json` - Propagated `loader_genvk.py` changes - Generated new source files - Modified `.gitattributes` to ensure generated source files should always have LF line endings because that is how it will be generated on all platforms going forward. Upstream change in Vulkan-Docs explicitly generates code with LF line endings. - Removed automatic CRLF to LF conversion git setting in `.appveyor.yml` Change-Id: I1ca36b80dfabe83fa16e36116d1ad43c0a65ff78
21 lines
574 B
Plaintext
21 lines
574 B
Plaintext
# See https://git-scm.com/docs/gitattributes
|
|
# See https://help.github.com/articles/dealing-with-line-endings/
|
|
|
|
# Default behavior, if core.autocrlf is unset.
|
|
* text=auto
|
|
|
|
# Files to be converted to native line endings on checkout.
|
|
*.c text
|
|
*.cpp text
|
|
*.h text
|
|
|
|
# Text files to always have CRLF (dos) line endings on checkout.
|
|
*.bat text eol=crlf
|
|
|
|
# Text files to always have LF (unix) line endings on checkout.
|
|
*.sh text eol=lf
|
|
|
|
# Generated source files will always have LF (unix) line endings on checkout.
|
|
loader/generated/*.c text eol=lf
|
|
loader/generated/*.h text eol=lf
|