aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/unix
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-06 20:00:41 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-06 20:00:41 +0000
commit040fd8f5670c8a4f73e0fe13f949681a23e6add8 (patch)
tree2d29451745ea7f86653f058bfc3afb897e5a31fe /src/gpu/gl/unix
parent96a7a9623f7b00bacf502adb99d485f2b376d328 (diff)
Rip out CSAA support
R=robertphillips@google.com Author: bsalomon@google.com Review URL: https://chromiumcodereview.appspot.com/23882009 git-svn-id: http://skia.googlecode.com/svn/trunk@11138 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/gl/unix')
-rw-r--r--src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp b/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
index 1b44900b1a..a71922e012 100644
--- a/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
+++ b/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
@@ -123,9 +123,6 @@ const GrGLInterface* GrGLCreateNativeInterface() {
interface->fPixelStorei = glPixelStorei;
interface->fReadBuffer = glReadBuffer;
interface->fReadPixels = glReadPixels;
- if (extensions.has("GL_NV_framebuffer_multisample_coverage")) {
- GR_GL_GET_PROC_SUFFIX(RenderbufferStorageMultisampleCoverage, NV);
- }
interface->fScissor = glScissor;
GR_GL_GET_PROC(ShaderSource);
interface->fStencilFunc = glStencilFunc;