Compare commits
3 commits
49b039a4d7
...
837828a774
Author | SHA1 | Date | |
---|---|---|---|
837828a774 | |||
adc4def4e2 | |||
506962bdcd |
3 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ chrono = { version = "0.4.35", features = ["serde"] }
|
||||||
anyhow = { version = "1.0.86", features = ["backtrace"] }
|
anyhow = { version = "1.0.86", features = ["backtrace"] }
|
||||||
indexmap = { version = "2.2.6", features = ["rayon"] }
|
indexmap = { version = "2.2.6", features = ["rayon"] }
|
||||||
shaderc = { version = "0.8.3", features = ["build-from-source"] }
|
shaderc = { version = "0.8.3", features = ["build-from-source"] }
|
||||||
rusqlite = { version = "0.33.0", features = ["bundled"] }
|
rusqlite = { version = "0.34.0", features = ["bundled"] }
|
||||||
cgmath = "0.18.0"
|
cgmath = "0.18.0"
|
||||||
http = "1.1.0"
|
http = "1.1.0"
|
||||||
iterchunks = "0.5.0"
|
iterchunks = "0.5.0"
|
||||||
|
|
|
@ -54,7 +54,7 @@ impl<'a> Default for EngineCreateInfo<'a> {
|
||||||
enable_game_mode: true,
|
enable_game_mode: true,
|
||||||
},
|
},
|
||||||
vulkan_debug_info: VulkanDebugInfo {
|
vulkan_debug_info: VulkanDebugInfo {
|
||||||
debugging: true,
|
debugging: false,
|
||||||
steam_layer: false,
|
steam_layer: false,
|
||||||
verbose: false,
|
verbose: false,
|
||||||
renderdoc: false,
|
renderdoc: false,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#version 450
|
#version 450
|
||||||
|
|
||||||
layout (binding = 1) uniform samplerCube sampler_cube_map;
|
layout (set = 0, binding = 1) uniform samplerCube sampler_cube_map;
|
||||||
|
|
||||||
layout (location = 0) in vec3 in_uvw;
|
layout (location = 0) in vec3 in_uvw;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue