From 4abba3b4ecc67886716c98600e567725931276b4 Mon Sep 17 00:00:00 2001 From: "jbauman@chromium.org" Date: Tue, 12 Feb 2013 03:45:54 +0000 Subject: Allow separately blacklisting Stage3D baseline mode. Some older drivers should support Stage3D constrained mode, not baseline mode, so add blacklist entries for that. BUG=172771 Review URL: https://chromiumcodereview.appspot.com/12079111 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181836 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/gpu/gpu_internals_ui.cc | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'content/browser/gpu/gpu_internals_ui.cc') diff --git a/content/browser/gpu/gpu_internals_ui.cc b/content/browser/gpu/gpu_internals_ui.cc index 46000b7..d6541b5 100644 --- a/content/browser/gpu/gpu_internals_ui.cc +++ b/content/browser/gpu/gpu_internals_ui.cc @@ -269,6 +269,15 @@ Value* GetFeatureStatus() { false }, { + "flash_stage3d_baseline", + flags & (content::GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE | + content::GPU_FEATURE_TYPE_FLASH_STAGE3D), + command_line.HasSwitch(switches::kDisableFlashStage3d), + "Using Stage3d Baseline profile in Flash has been disabled, either" + " via about:flags or command line.", + false + }, + { "texture_sharing", flags & GPU_FEATURE_TYPE_TEXTURE_SHARING, command_line.HasSwitch(switches::kDisableImageTransportSurface), -- cgit v1.1