Compare commits

...

3 commits

Author SHA1 Message Date
837828a774 Update Rust crate rusqlite to 0.34.0 2025-03-08 12:02:29 +00:00
adc4def4e2 Back to whole area 2025-03-08 12:48:06 +01:00
506962bdcd Small setting changes 2025-03-08 12:25:48 +01:00
3 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@ chrono = { version = "0.4.35", features = ["serde"] }
anyhow = { version = "1.0.86", features = ["backtrace"] }
indexmap = { version = "2.2.6", features = ["rayon"] }
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"
http = "1.1.0"
iterchunks = "0.5.0"

View file

@ -54,7 +54,7 @@ impl<'a> Default for EngineCreateInfo<'a> {
enable_game_mode: true,
},
vulkan_debug_info: VulkanDebugInfo {
debugging: true,
debugging: false,
steam_layer: false,
verbose: false,
renderdoc: false,

View file

@ -1,6 +1,6 @@
#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;