working heightmap shader?
This commit is contained in:
parent
43e1fda736
commit
fe15d3e8ca
15 changed files with 331 additions and 76 deletions
25
project.json
25
project.json
|
|
@ -6,7 +6,7 @@
|
|||
"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-VulkanTexture", "Crafter.Graphics-TextureShader", "Crafter.Graphics-DescriptorSet"],
|
||||
"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-VulkanTexture", "Crafter.Graphics-TextureShader", "Crafter.Graphics-DescriptorSet"],
|
||||
"build_dir": "build",
|
||||
"output_dir": "bin",
|
||||
"type":"library",
|
||||
|
|
@ -23,6 +23,16 @@
|
|||
"type":13,
|
||||
"entrypoint":"main"
|
||||
},
|
||||
{
|
||||
"path":"MeshShaderXYZRGBA.glsl",
|
||||
"type":13,
|
||||
"entrypoint":"main"
|
||||
},
|
||||
{
|
||||
"path":"MeshShaderHeightmapRGBA.glsl",
|
||||
"type":13,
|
||||
"entrypoint":"main"
|
||||
},
|
||||
{
|
||||
"path":"FragmentShaderSolidWhite.glsl",
|
||||
"type":4,
|
||||
|
|
@ -32,6 +42,11 @@
|
|||
"path":"FragmentShaderTexture.glsl",
|
||||
"type":4,
|
||||
"entrypoint":"main"
|
||||
},
|
||||
{
|
||||
"path":"FragmentShaderVertexColor.glsl",
|
||||
"type":4,
|
||||
"entrypoint":"main"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -49,10 +64,6 @@
|
|||
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Asset.git",
|
||||
"configuration":"lib-debug"
|
||||
},
|
||||
{
|
||||
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Component.git",
|
||||
"configuration":"lib-debug"
|
||||
},
|
||||
{
|
||||
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Math.git",
|
||||
"configuration":"lib-debug"
|
||||
|
|
@ -72,10 +83,6 @@
|
|||
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Asset.git",
|
||||
"configuration":"lib-release"
|
||||
},
|
||||
{
|
||||
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Component.git",
|
||||
"configuration":"lib-release"
|
||||
},
|
||||
{
|
||||
"path":"https://forgejo.catcrafts.net/Catcrafts/Crafter.Math.git",
|
||||
"configuration":"lib-release"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue