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>2014-01-17 15:05:38 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-01-17 15:05:38 +0000
commit90313cc36a6f43a3e9d3818aca536cd6631c222b (patch)
treecf5fcfa5f8cce0ea9cec2128dea770d42ec12551 /src/gpu/gl/unix
parentbd00629708c282d8fb9c2ada498c7f12ab8d03d6 (diff)
Move GrGLExtensions from GrGLContextInfo to GrGLInterface
BUG=skia:2042 R=robertphillips@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/140823003 git-svn-id: http://skia.googlecode.com/svn/trunk@13118 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/gl/unix')
-rw-r--r--src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp b/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
index d8c1d76a9a..a120808a3d 100644
--- a/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
+++ b/src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp
@@ -7,7 +7,6 @@
*/
-#include "gl/GrGLExtensions.h"
#include "gl/GrGLInterface.h"
#include "../GrGLUtil.h"
@@ -276,6 +275,7 @@ const GrGLInterface* GrGLCreateNativeInterface() {
}
interface->fStandard = kGL_GrGLStandard;
+ interface->fExtensions.swap(&extensions);
return interface;
} else {