Revert "Make matc workarounds default to NONE again" (#9295)

This reverts commit d11a6b4467.

Breakage detailed in following bug

BUGS=449740720
This commit is contained in:
Powei Feng
2025-10-07 11:50:34 -07:00
committed by GitHub
parent f52476a323
commit 3294bb64a5
2 changed files with 2 additions and 2 deletions

View File

@@ -146,7 +146,7 @@ protected:
Platform mPlatform = Platform::DESKTOP;
TargetApi mTargetApi = (TargetApi) 0;
Optimization mOptimization = Optimization::PERFORMANCE;
Workarounds mWorkarounds = Workarounds::NONE;
Workarounds mWorkarounds = Workarounds::ALL;
bool mPrintShaders = false;
bool mSaveRawVariants = false;
bool mGenerateDebugInfo = false;

View File

@@ -171,7 +171,7 @@ protected:
StringReplacementMap mTemplateMap;
StringReplacementMap mMaterialParameters;
filament::UserVariantFilterMask mVariantFilter = 0;
Workarounds mWorkarounds = Workarounds::NONE;
Workarounds mWorkarounds = Workarounds::ALL;
bool mIncludeEssl1 = true;
};