画卦伏羲

Results 16 comments of 画卦伏羲

While I rebuild the vma lib, inexplicably succeeded... What???? ˃̣̣̥᷄⌓˂̣̣̥᷅

I just add `VMA` in to my project, like this: ![image](https://user-images.githubusercontent.com/40132375/167770408-63e37552-7b25-4116-aacc-20c421a9b9f0.png) 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` ┑( ̄Д  ̄)┍

![image](https://user-images.githubusercontent.com/40132375/159842021-5cfc3400-bc30-4bc2-9d3b-e7efedea10ba.png)

``` --- 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:...

![image](https://user-images.githubusercontent.com/40132375/159842371-e025e955-328d-48fc-b2c4-4927d70b194a.png)

by the way,I use the compiler is llvm-MinGW, and the clang version of llvm-MinGW : ![image](https://user-images.githubusercontent.com/40132375/159842552-0e3581cb-e968-485c-bf48-83e6ff85c754.png) the version of clang and the version of clang-format is not same, Is this...

![image](https://user-images.githubusercontent.com/40132375/159845024-2abe7972-7f38-4c49-bcfd-d95b136f216c.png) 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` 失败了。提示执行...