aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp
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/win/GrGLCreateNativeInterface_win.cpp
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/win/GrGLCreateNativeInterface_win.cpp')
-rw-r--r--src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp b/src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp
index 81f080ea67..e011605edf 100644
--- a/src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp
+++ b/src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp
@@ -6,8 +6,6 @@
* found in the LICENSE file.
*/
-
-#include "gl/GrGLExtensions.h"
#include "gl/GrGLInterface.h"
#include "gl/GrGLUtil.h"
#define WIN32_LEAN_AND_MEAN
@@ -308,6 +306,7 @@ const GrGLInterface* GrGLCreateNativeInterface() {
}
interface->fStandard = kGL_GrGLStandard;
+ interface->fExtensions.swap(&extensions);
return interface;
} else {