画卦伏羲
画卦伏羲
While I rebuild the vma lib, inexplicably succeeded... What???? ˃̣̣̥᷄⌓˂̣̣̥᷅
I just add `VMA` in to my project, like this:  and in the project root `CMakeLists.txt`: ```CMake ... add_subdirectory(./thirdparty) ... ``` and the `./thirdparty/CMakeLists.txt` ```CMake ... add_subdirectory(./VulkanMemoryAllocator) ... ```...
maybe you must use `Vulkan 1.3` to compile `VMA` ┑( ̄Д  ̄)┍

``` --- Language: Cpp # BasedOnStyle: Microsoft AccessModifierOffset: -20 AlignAfterOpenBracket: Align AlignArrayOfStructures: None AlignConsecutiveMacros: None AlignConsecutiveAssignments: None AlignConsecutiveBitFields: None AlignConsecutiveDeclarations: None AlignEscapedNewlines: Right AlignOperands: Align AlignTrailingComments: true AllowAllArgumentsOnNextLine: true AllowAllConstructorInitializersOnNextLine:...

by the way,I use the compiler is llvm-MinGW, and the clang version of llvm-MinGW :  the version of clang and the version of clang-format is not same, Is this...
 Yes! you are right. Thank you very much~ :D
首先,感谢关注该项目。 确实,`submodule` 在下载和同步 [KTX-Software](https://github.com/KhronosGroup/KTX-Software.git/) 的时候经常会失败,其实有时 `git clone` 都会克隆不下来。应该是国内网络“特色“。可以使用浏览器下载源码压缩包,再将文件解压缩到固定目录下就行。 考虑使用 `submodule` 是因为这是一种自动化配置 `Turbo` 编译依赖的方式。为了开发者方便配置选择的该方式。 如果您有更好的方式,愿意恭听。 ๐•ᴗ•๐
``` warning: Clone succeeded, but checkout failed. You can inspect what was checked out with 'git status' and retry with 'git restore --source=HEAD :/' ``` 我看有这个提示。说是 `克隆` 成功了,但是 `checkout` 失败了。提示执行...