From 8aee000b055bb030cb22dacb150af9a082a7db36 Mon Sep 17 00:00:00 2001 From: ecker Date: Thu, 11 Jun 2026 22:43:06 -0500 Subject: [PATCH] fix non-msaa because of cringe --- bin/data/config.json | 14 +++++++------- bin/data/scenes/sourceengine/sourceengine.json | 4 ++-- bin/data/shaders/display/deferred/comp/comp.h | 2 -- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/bin/data/config.json b/bin/data/config.json index e1447802..09a0e7d2 100644 --- a/bin/data/config.json +++ b/bin/data/config.json @@ -4,10 +4,10 @@ "start": "StartMenu", "matrix": { "reverseInfinite": true }, "lights": { "enabled": true, - "lightmaps": true, + "lightmaps": false, "max": 32, "shadows": { - "enabled": false, + "enabled": true, "update": 4, "max": 16, "samples": 2 @@ -87,7 +87,7 @@ ] }, "framebuffer": { - "msaa": 2, + "msaa": 1, "size": 1 // "size": [ 640, 480, "NEAREST" ] // "size": [ 1280, 720 ] @@ -116,12 +116,12 @@ "pipelines": { "deferred": true, "gui": true, - "vsync": false, // vsync on vulkan side rather than engine-side + "vsync": true, // vsync on vulkan side rather than engine-side "hdr": true, - "vxgi": false, // to-do: fix issues + "vxgi": true, // to-do: fix issues "culling": false, - "bloom": false, - "dof": false, + "bloom": true, + "dof": true, "rt": false, "fsr": false, "postProcess": false // "postProcess.chromab" // false diff --git a/bin/data/scenes/sourceengine/sourceengine.json b/bin/data/scenes/sourceengine/sourceengine.json index 065d566b..bdb37541 100644 --- a/bin/data/scenes/sourceengine/sourceengine.json +++ b/bin/data/scenes/sourceengine/sourceengine.json @@ -1,7 +1,7 @@ { // "import": "./rp_downtown_v2.json" // "import": "./ss2_medsci1.json" -// "import": "./mds_mcdonalds.json" - "import": "./cs_office.json" + "import": "./mds_mcdonalds.json" +// "import": "./cs_office.json" // "import": "./gm_construct.json" } \ No newline at end of file diff --git a/bin/data/shaders/display/deferred/comp/comp.h b/bin/data/shaders/display/deferred/comp/comp.h index 65bf6187..00d473fc 100644 --- a/bin/data/shaders/display/deferred/comp/comp.h +++ b/bin/data/shaders/display/deferred/comp/comp.h @@ -53,9 +53,7 @@ layout (constant_id = 1) const uint CUBEMAPS = 128; layout(binding = 7, set = 0, rgba16f) uniform writeonly image2DArray imageColor; layout(binding = 8, set = 0, rgba16f) uniform writeonly image2DArray imageBright; layout(binding = 9, set = 0, rg16f) uniform writeonly image2DArray imageMotion; -#if MULTISAMPLING layout(binding = 10, set = 0, r32f) uniform writeonly image2DArray imageDepthResolved; -#endif layout( push_constant ) uniform PushBlock { uint pass;