From d47fafe05743d61958397bcf7a4b2bf66d778e1d Mon Sep 17 00:00:00 2001 From: "bsalomon@google.com" Date: Thu, 20 Oct 2011 21:09:45 +0000 Subject: Add test that validates GrGLInterfaces Review URL: http://codereview.appspot.com/5304048/ git-svn-id: http://skia.googlecode.com/svn/trunk@2510 2bbb7eff-a529-9590-31e7-b0007b416f81 --- include/gpu/SkMesaGLContext.h | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'include/gpu/SkMesaGLContext.h') diff --git a/include/gpu/SkMesaGLContext.h b/include/gpu/SkMesaGLContext.h index 4351f66f33..b7578f367b 100644 --- a/include/gpu/SkMesaGLContext.h +++ b/include/gpu/SkMesaGLContext.h @@ -13,6 +13,9 @@ #if SK_MESA class SkMesaGLContext : public SkGLContext { +private: + typedef intptr_t Context; + public: SkMesaGLContext(); @@ -20,16 +23,28 @@ public: virtual void makeCurrent() const SK_OVERRIDE; + class AutoContextRestore { + public: + AutoContextRestore(); + ~AutoContextRestore(); + + private: + Context fOldContext; + GLint fOldWidth; + GLint fOldHeight; + GLint fOldFormat; + void* fOldImage; + }; + protected: virtual const GrGLInterface* createGLContext() SK_OVERRIDE; void destroyGLContext() SK_OVERRIDE; private: - typedef intptr_t Context; Context fContext; GrGLubyte *fImage; }; #endif -#endif \ No newline at end of file +#endif -- cgit v1.2.3