documentation

This commit is contained in:
Jorijn van der Graaf 2025-06-13 23:59:36 +02:00
commit 3275eb2f70
135 changed files with 15649 additions and 430 deletions

View file

@ -4,9 +4,9 @@
{
"name": "base",
"standard": "c++26",
"source_files": ["Crafter.Graphics-Window","Crafter.Graphics-WindowWayland","Crafter.Graphics-WindowWaylandWayland", "Crafter.Graphics-UiElement", "Crafter.Graphics-VulkanDevice", "Crafter.Graphics-WindowWaylandVulkan", "VulkanBuffer", "VulkanTools", "Crafter.Graphics-Camera"],
"c_files": ["wayland-xdg-decoration-unstable-v1-client-protocol", "xdg-shell-protocol", "shm"],
"module_files": ["Crafter.Graphics-Window","Crafter.Graphics-WindowWayland","Crafter.Graphics-WindowWaylandWayland", "Crafter.Graphics", "Crafter.Graphics-UiElement", "Crafter.Graphics-Types", "Crafter.Graphics-VulkanDevice", "Crafter.Graphics-VulkanPipeline", "Crafter.Graphics-VulkanShader", "Crafter.Graphics-WindowWaylandVulkan", "Crafter.Graphics-Camera", "Crafter.Graphics-VulkanBuffer", "Crafter.Graphics-Mesh", "Crafter.Graphics-MeshShader", "Crafter.Graphics-HeightmapShader","Crafter.Graphics-VoxelShader", "Crafter.Graphics-VulkanTexture", "Crafter.Graphics-TextureShader", "Crafter.Graphics-DescriptorSet"],
"source_files": ["src/source/Crafter.Graphics-Window","src/source/Crafter.Graphics-WindowWayland","src/source/Crafter.Graphics-WindowWaylandWayland", "src/source/Crafter.Graphics-UiElement", "src/source/Crafter.Graphics-VulkanDevice", "src/source/Crafter.Graphics-WindowWaylandVulkan", "lib/VulkanTools", "src/source/Crafter.Graphics-Camera"],
"c_files": ["lib/wayland-xdg-decoration-unstable-v1-client-protocol", "lib/xdg-shell-protocol", "lib/shm"],
"module_files": ["src/module/Crafter.Graphics-Window","src/module/Crafter.Graphics-WindowWayland","src/module/Crafter.Graphics-WindowWaylandWayland", "src/module/Crafter.Graphics", "src/module/Crafter.Graphics-UiElement", "src/module/Crafter.Graphics-Types", "src/module/Crafter.Graphics-VulkanDevice", "src/module/Crafter.Graphics-VulkanPipeline", "src/module/Crafter.Graphics-VulkanShader", "src/module/Crafter.Graphics-WindowWaylandVulkan", "src/module/Crafter.Graphics-Camera", "src/module/Crafter.Graphics-VulkanBuffer", "src/module/Crafter.Graphics-Mesh", "src/module/Crafter.Graphics-MeshShader", "src/module/Crafter.Graphics-HeightmapShader","src/module/Crafter.Graphics-VoxelShader", "src/module/Crafter.Graphics-VulkanTexture", "src/module/Crafter.Graphics-TextureShader", "src/module/Crafter.Graphics-DescriptorSet"],
"build_dir": "build",
"output_dir": "bin",
"type":"library",
@ -14,42 +14,42 @@
"flags": ["-Wno-uninitialized"],
"shaders": [
{
"path":"MeshShaderXYZ.glsl",
"path":"src/shader/MeshShaderXYZ.glsl",
"type":13,
"entrypoint":"main"
},
{
"path":"MeshShaderXYZUV.glsl",
"path":"src/shader/MeshShaderXYZUV.glsl",
"type":13,
"entrypoint":"main"
},
{
"path":"MeshShaderXYZRGBA.glsl",
"path":"src/shader/MeshShaderXYZRGBA.glsl",
"type":13,
"entrypoint":"main"
},
{
"path":"MeshShaderHeightmapRGBA.glsl",
"path":"src/shader/MeshShaderHeightmapRGBA.glsl",
"type":13,
"entrypoint":"main"
},
{
"path":"MeshShaderMixedVoxelGrid.glsl",
"path":"src/shader/MeshShaderMixedVoxelGrid.glsl",
"type":13,
"entrypoint":"main"
},
{
"path":"FragmentShaderSolidWhite.glsl",
"path":"src/shader/FragmentShaderSolidWhite.glsl",
"type":4,
"entrypoint":"main"
},
{
"path":"FragmentShaderTexture.glsl",
"path":"src/shader/FragmentShaderTexture.glsl",
"type":4,
"entrypoint":"main"
},
{
"path":"FragmentShaderVertexColor.glsl",
"path":"src/shader/FragmentShaderVertexColor.glsl",
"type":4,
"entrypoint":"main"
}
@ -97,7 +97,7 @@
{
"name": "develop",
"extends": ["lib-debug"],
"source_files": ["main"],
"source_files": ["src/source/main"],
"type":"executable"
}
]