aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/gl/SkANGLEGLContext.h
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-04-02 15:04:16 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-04-02 15:04:16 +0000
commitd5c8fe6f344e1b141390c733017656f6fb3f5f63 (patch)
treeaa84667646274951981af8dd71c998d85519ad99 /include/gpu/gl/SkANGLEGLContext.h
parent5582e63606cf23fefeef652ad556b0a998467e0c (diff)
Removed ANGLE namespace requirement
Diffstat (limited to 'include/gpu/gl/SkANGLEGLContext.h')
-rw-r--r--include/gpu/gl/SkANGLEGLContext.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/gpu/gl/SkANGLEGLContext.h b/include/gpu/gl/SkANGLEGLContext.h
index 10954c1c1a..7bcf07a87d 100644
--- a/include/gpu/gl/SkANGLEGLContext.h
+++ b/include/gpu/gl/SkANGLEGLContext.h
@@ -29,9 +29,9 @@ public:
~AutoContextRestore();
private:
- angle::EGLContext fOldEGLContext;
- angle::EGLDisplay fOldDisplay;
- angle::EGLSurface fOldSurface;
+ EGLContext fOldEGLContext;
+ EGLDisplay fOldDisplay;
+ EGLSurface fOldSurface;
};
protected:
@@ -39,9 +39,9 @@ protected:
virtual void destroyGLContext() SK_OVERRIDE;
private:
- angle::EGLContext fContext;
- angle::EGLDisplay fDisplay;
- angle::EGLSurface fSurface;
+ EGLContext fContext;
+ EGLDisplay fDisplay;
+ EGLSurface fSurface;
};
#endif