diff options
author | 2025-03-11 17:30:58 -0700 | |
---|---|---|
committer | 2025-03-11 17:30:58 -0700 | |
commit | 89366b4eb895f5752d53e58e2a87bc5be32b4a1d (patch) | |
tree | 6e1e3db495d1458f51fedd306a82c3fbcab352a6 /libs/graphicsenv/GraphicsEnv.cpp | |
parent | 6d5046f0fc0a8880f49ee19ca22920d7baa838fc (diff) | |
parent | 473ebe724f2c4981b86f72907c7ba072647a0e4b (diff) |
Merge "Move flag feature_overrides to namespace "gpu"" into main
Diffstat (limited to 'libs/graphicsenv/GraphicsEnv.cpp')
-rw-r--r-- | libs/graphicsenv/GraphicsEnv.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/graphicsenv/GraphicsEnv.cpp b/libs/graphicsenv/GraphicsEnv.cpp index 626581cc2a..03e6456ea6 100644 --- a/libs/graphicsenv/GraphicsEnv.cpp +++ b/libs/graphicsenv/GraphicsEnv.cpp @@ -639,7 +639,7 @@ const std::vector<std::string>& GraphicsEnv::getAngleEglFeatures() { // List of ANGLE features to override (enabled or disable). // The list of overrides is loaded and parsed by GpuService. void GraphicsEnv::updateAngleFeatureOverrides() { - if (!graphicsenv_flags::feature_overrides()) { + if (!graphicsenv_flags::angle_feature_overrides()) { return; } @@ -654,7 +654,7 @@ void GraphicsEnv::updateAngleFeatureOverrides() { void GraphicsEnv::getAngleFeatureOverrides(std::vector<const char*>& enabled, std::vector<const char*>& disabled) { - if (!graphicsenv_flags::feature_overrides()) { + if (!graphicsenv_flags::angle_feature_overrides()) { return; } |