mirror of
https://gitee.com/openharmony/third_party_vulkan-loader
synced 2024-11-22 23:00:43 +00:00
de99f8f6be
This changes the loader to always set the version to the one which was used when generating the source files that are checked into the repo, instead of using the version gotten from the Vulkan-Headers find cmake file. Change-Id: Id0955ddfd10e35e0f358f5a77799d8baa4992b04
23 lines
612 B
Plaintext
23 lines
612 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
|
|
loader/generated/*.cmake text eol=lf
|
|
|