diff options
author | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-01 01:46:38 +0000 |
---|---|---|
committer | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-01 01:46:38 +0000 |
commit | fbe2037a09135bc592d77d10ebe7b057a4a6b3d2 (patch) | |
tree | bb6f4abca72b53bdf9e8ca860dba420dec09b448 /gpu/demos | |
parent | 1cce54290389788770bff8997c5d9fe7f323e3ea (diff) | |
download | chromium_src-fbe2037a09135bc592d77d10ebe7b057a4a6b3d2.zip chromium_src-fbe2037a09135bc592d77d10ebe7b057a4a6b3d2.tar.gz chromium_src-fbe2037a09135bc592d77d10ebe7b057a4a6b3d2.tar.bz2 |
Reland 87371 - Support for glSetSurfaceCHROMIUM.
This command allows a previously created GPU surface to be made current for a command buffer. There are no surfaces registered at this point so this command is currently a no-op.
Review URL: http://codereview.chromium.org/7077001
Review URL: http://codereview.chromium.org/7006019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87408 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/demos')
-rw-r--r-- | gpu/demos/framework/window.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/demos/framework/window.cc b/gpu/demos/framework/window.cc index a0eedcc..4cbfbf6 100644 --- a/gpu/demos/framework/window.cc +++ b/gpu/demos/framework/window.cc @@ -60,7 +60,7 @@ bool Window::CreateRenderContext(gfx::PluginWindowHandle hwnd) { } GpuScheduler* gpu_scheduler( - new GpuScheduler(command_buffer.get(), NULL)); + new GpuScheduler(command_buffer.get(), NULL, NULL)); if (!gpu_scheduler->Initialize(hwnd, gfx::Size(), gpu::gles2::DisallowedExtensions(), NULL, std::vector<int32>(), |