the beginning of the implementation of Vulkan

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-30 01:35:29 +07:00
parent 1a05d3a6d9
commit 8abdea6b77
9 changed files with 320 additions and 21 deletions
-7
View File
@@ -1,7 +0,0 @@
{
// Используйте IntelliSense, чтобы узнать о возможных атрибутах.
// Наведите указатель мыши, чтобы просмотреть описания существующих атрибутов.
// Для получения дополнительной информации посетите: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": []
}
+7 -7
View File
@@ -8,13 +8,13 @@
"-fdiagnostics-color=always",
"-g",
"-fopenmp",
"${fileDirname}/main.cpp",
"${fileDirname}/Xenith/core.cpp",
"${fileDirname}/Xenith/token/token.cpp",
"-o",
"${fileDirname}/main",
"-I", "${fileDirname}/Xenith",
"-I", "${fileDirname}/Xenith/token"
"${workspaceFolder}/main.cpp",
"${workspaceFolder}/Xenith/core.cpp",
"${workspaceFolder}/Xenith/token/token.cpp",
"-I", "${workspaceFolder}/Xenith",
"-I", "${workspaceFolder}/Xenith/token",
"-o", "${workspaceFolder}/main",
"-lvulkan"
],
"options": {
"cwd": "${fileDirname}"