feat: vulkan api wrapper #69

Open
light7734 wants to merge 4 commits from vulkan_api_wrapper into main
Showing only changes of commit 8b0f286f39 - Show all commits

View file

@ -49,8 +49,8 @@ find ./build/modules -type f -name "*.profraw" -exec rm -fv {} +
LLVM_COV_SHOW=$(
llvm-cov show \
-instr-profile='./build/coverage/merged.profdata' \
"$(find ./build -type f -name '*_tests' -executable -exec printf -- '-object %s ' {} \;)" \
"$(find ./build -type f -name '*\.a' -exec printf -- '-object %s ' {} \;)" \
"$(find ./build -type f -name '*_tests' -executable -exec printf -- '-o %s ' {} \;)" \
"$(find ./build -type f -name '*\.a' -exec printf -- '-o %s ' {} \;)" \
-ignore-filename-regex='\.test\.cpp$' \
-ignore-filename-regex='\.fuzz\.cpp$'
)