Commit a506f838 authored by Geoff Lang's avatar Geoff Lang Committed by Commit Bot

Enable the passthrough command decoder by default on Windows.

The finch release process says that the feature should be enabled in
Chrome ToT at the same time as it is launched so that a max_version can
be set.

BUG=882580

Change-Id: I4b3e3eb70236dab1f4269ef9f38073c89a93d8b0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1736798Reviewed-by: default avatarJonathan Backer <backer@chromium.org>
Reviewed-by: default avatarKenneth Russell <kbr@chromium.org>
Commit-Queue: Geoff Lang <geofflang@chromium.org>
Cr-Commit-Position: refs/heads/master@{#684382}
parent d9d8d58a
......@@ -10,7 +10,14 @@ namespace features {
// the --use-cmd-decoder=passthrough or --use-cmd-decoder=validating flags.
// Feature lives in ui/gl because it affects the GL binding initialization on
// platforms that would otherwise not default to using EGL bindings.
// Launched on Windows, still experimental on other platforms.
const base::Feature kDefaultPassthroughCommandDecoder{
"DefaultPassthroughCommandDecoder", base::FEATURE_DISABLED_BY_DEFAULT};
"DefaultPassthroughCommandDecoder",
#if defined(OS_WIN)
base::FEATURE_ENABLED_BY_DEFAULT
#else
base::FEATURE_DISABLED_BY_DEFAULT
#endif
};
} // namespace features
\ No newline at end of file
} // namespace features
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment