summaryrefslogtreecommitdiffstats
path: root/gpu/gles2_conform_support
diff options
context:
space:
mode:
authorapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-17 18:28:09 +0000
committerapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-17 18:28:09 +0000
commit658f03f18b7bb5f475e8536d4689e153549e5ac9 (patch)
tree39f9f4117ac60ad7f7f7737215d1491bab994ffb /gpu/gles2_conform_support
parenteacc2f41a8b08d2dea319e88759b3d27e22a1cf1 (diff)
downloadchromium_src-658f03f18b7bb5f475e8536d4689e153549e5ac9.zip
chromium_src-658f03f18b7bb5f475e8536d4689e153549e5ac9.tar.gz
chromium_src-658f03f18b7bb5f475e8536d4689e153549e5ac9.tar.bz2
Delete usage and support for EGL_ANGLE_software_display extension.
We aren't using it anymore. It used to be used to switch to SwitchShader but the new version of SwiftShader exposes a EGL / GLES2 interface without ANGLE in between. TBR=kbr@chromium.org, senorblanco@chromium.org Review URL: https://codereview.chromium.org/17110007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206759 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/gles2_conform_support')
-rw-r--r--gpu/gles2_conform_support/egl/display.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gpu/gles2_conform_support/egl/display.cc b/gpu/gles2_conform_support/egl/display.cc
index 9df88e5..5288a9b 100644
--- a/gpu/gles2_conform_support/egl/display.cc
+++ b/gpu/gles2_conform_support/egl/display.cc
@@ -126,12 +126,12 @@ EGLSurface Display::CreateWindowSurface(EGLConfig config,
decoder_->set_engine(gpu_scheduler_.get());
gfx::Size size(create_offscreen_width_, create_offscreen_height_);
if (create_offscreen_) {
- gl_surface_ = gfx::GLSurface::CreateOffscreenGLSurface(false, size);
+ gl_surface_ = gfx::GLSurface::CreateOffscreenGLSurface(size);
create_offscreen_ = false;
create_offscreen_width_ = 0;
create_offscreen_height_ = 0;
} else {
- gl_surface_ = gfx::GLSurface::CreateViewGLSurface(false, win);
+ gl_surface_ = gfx::GLSurface::CreateViewGLSurface(win);
}
if (!gl_surface_.get())
return EGL_NO_SURFACE;