diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-12 00:51:30 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-12 00:51:30 +0000 |
commit | 23716fb643383cb737e564d55234a7c2d58eba00 (patch) | |
tree | edbde1c9b816bf19a4e4683052cdb70263e2808b /gpu/demos/framework/window.cc | |
parent | 32fc6ab6167aa03a7197d37aea94e3ee98d70c59 (diff) | |
download | chromium_src-23716fb643383cb737e564d55234a7c2d58eba00.zip chromium_src-23716fb643383cb737e564d55234a7c2d58eba00.tar.gz chromium_src-23716fb643383cb737e564d55234a7c2d58eba00.tar.bz2 |
Revert 77899 - Connect up --disable-gl-multisampling to command buffer
Plumb the --disable-gl-multisampling flag in to the command buffer, so it won't report the extension to any consumers.
BUG=75181
TEST=webgl antialias test
TBR=jbauman
Review URL: http://codereview.chromium.org/6623063
TBR=jbauman@chromium.org
Review URL: http://codereview.chromium.org/6685022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77901 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/demos/framework/window.cc')
-rw-r--r-- | gpu/demos/framework/window.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gpu/demos/framework/window.cc b/gpu/demos/framework/window.cc index 1440110..825025ef 100644 --- a/gpu/demos/framework/window.cc +++ b/gpu/demos/framework/window.cc @@ -61,9 +61,7 @@ bool Window::CreateRenderContext(gfx::PluginWindowHandle hwnd) { GPUProcessor* gpu_processor( new GPUProcessor(command_buffer.get(), NULL)); - if (!gpu_processor->Initialize(hwnd, gfx::Size(), - gpu::gles2::DisallowedExtensions(), - NULL, std::vector<int32>(), + if (!gpu_processor->Initialize(hwnd, gfx::Size(), NULL, std::vector<int32>(), NULL, 0)) { return false; } |