diff options
author | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-21 18:52:47 +0000 |
---|---|---|
committer | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-21 18:52:47 +0000 |
commit | f81f5950b78f7c0161d757d91ff3a3baa96e089b (patch) | |
tree | 11312132f3f8aa876dd021e6ce40fcaf551a6271 /gpu/gles2_conform_support/egl | |
parent | e25c33d1747f42be8171ff38d06fe9d797d46af0 (diff) | |
download | chromium_src-f81f5950b78f7c0161d757d91ff3a3baa96e089b.zip chromium_src-f81f5950b78f7c0161d757d91ff3a3baa96e089b.tar.gz chromium_src-f81f5950b78f7c0161d757d91ff3a3baa96e089b.tar.bz2 |
Allow creating a gpu channel that uses software rendering
Where supported (on ANGLE with EGL_ANGLE_software_display), allow for the creation of gpu channels that use software rendering instead of hardware rendering.
BUG=
TEST=trybots, other later tests
TBR=apatrick
Review URL: http://codereview.chromium.org/7471042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93449 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/gles2_conform_support/egl')
-rw-r--r-- | gpu/gles2_conform_support/egl/display.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/gles2_conform_support/egl/display.cc b/gpu/gles2_conform_support/egl/display.cc index cfadf0f..63604b9 100644 --- a/gpu/gles2_conform_support/egl/display.cc +++ b/gpu/gles2_conform_support/egl/display.cc @@ -111,7 +111,7 @@ EGLSurface Display::CreateWindowSurface(EGLConfig config, scoped_ptr<GpuScheduler> gpu_scheduler( new GpuScheduler(command_buffer_.get(), NULL, NULL)); if (!gpu_scheduler->Initialize( - win, gfx::Size(), gpu::gles2::DisallowedExtensions(), NULL, + win, gfx::Size(), false, gpu::gles2::DisallowedExtensions(), NULL, attribs, NULL)) return EGL_NO_SURFACE; |