fix non-msaa because of cringe

This commit is contained in:
ecker 2026-06-11 22:43:06 -05:00
parent 02d98c1176
commit 8aee000b05
3 changed files with 9 additions and 11 deletions

View File

@ -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

View File

@ -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"
}

View File

@ -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;