From be5e9905bacbfabc5c2b61dab1c32cf441859deb Mon Sep 17 00:00:00 2001 From: Sungun Park Date: Mon, 30 Sep 2024 10:29:33 -0700 Subject: [PATCH] Fix incomplete use of MI for debugCombineArrayTexture `commit` call is required before `use`, which became a new norm for the new descriptor set design. --- filament/src/PostProcessManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/filament/src/PostProcessManager.cpp b/filament/src/PostProcessManager.cpp index 98150556f6b..df04a18c7ce 100644 --- a/filament/src/PostProcessManager.cpp +++ b/filament/src/PostProcessManager.cpp @@ -3410,6 +3410,7 @@ FrameGraphId PostProcessManager::debugCombineArrayTexture(Fra float(vp.width) / inputDesc.width, float(vp.height) / inputDesc.height }); + mi->commit(driver); mi->use(driver); auto pipeline = material.getPipelineState(mEngine);