From 93276c683d383142dfad31a01c6fdb1c810b6c1f Mon Sep 17 00:00:00 2001 From: bsalomon Date: Mon, 23 Feb 2015 10:51:13 -0800 Subject: Remove EGL header from SkANGLELContext.h TBR=egdaniel@google.com Review URL: https://codereview.chromium.org/947263002 --- include/gpu/gl/angle/SkANGLEGLContext.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'include/gpu/gl/angle') diff --git a/include/gpu/gl/angle/SkANGLEGLContext.h b/include/gpu/gl/angle/SkANGLEGLContext.h index 90707011e8..6705248f25 100644 --- a/include/gpu/gl/angle/SkANGLEGLContext.h +++ b/include/gpu/gl/angle/SkANGLEGLContext.h @@ -12,8 +12,6 @@ #include "gl/SkGLContext.h" -#include - class SkANGLEGLContext : public SkGLContext { public: ~SkANGLEGLContext() SK_OVERRIDE; @@ -32,15 +30,16 @@ public: return ctx; } - static EGLDisplay GetD3DEGLDisplay(EGLNativeDisplayType nativeDisplay); + // The param is an EGLNativeDisplayType and the return is an EGLDispay. + static void* GetD3DEGLDisplay(void* nativeDisplay); private: SkANGLEGLContext(); void destroyGLContext(); - EGLContext fContext; - EGLDisplay fDisplay; - EGLSurface fSurface; + void* fContext; + void* fDisplay; + void* fSurface; }; #endif -- cgit v1.2.3