c9542ca3d0
R=bsalomon@google.com Review URL: https://codereview.chromium.org/26701002 git-svn-id: http://skia.googlecode.com/svn/trunk@11682 2bbb7eff-a529-9590-31e7-b0007b416f81
28 lines
579 B
C++
28 lines
579 B
C++
|
|
/*
|
|
* Copyright 2012 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
#ifndef SkDebugGLContext_DEFINED
|
|
#define SkDebugGLContext_DEFINED
|
|
|
|
#include "SkGLContextHelper.h"
|
|
|
|
class SkDebugGLContext : public SkGLContextHelper {
|
|
|
|
public:
|
|
SkDebugGLContext() {};
|
|
|
|
virtual void makeCurrent() const SK_OVERRIDE {};
|
|
virtual void swapBuffers() const SK_OVERRIDE {};
|
|
|
|
protected:
|
|
virtual const GrGLInterface* createGLContext() SK_OVERRIDE;
|
|
|
|
virtual void destroyGLContext() SK_OVERRIDE {};
|
|
};
|
|
|
|
#endif
|