Make matc workarounds default to NONE again

This commit is contained in:
Mathias Agopian
2025-09-25 16:03:25 -07:00
committed by Mathias Agopian
parent 91d4e0e688
commit d11a6b4467
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::ALL;
Workarounds mWorkarounds = Workarounds::NONE;
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::ALL;
Workarounds mWorkarounds = Workarounds::NONE;
bool mIncludeEssl1 = true;
};