blob: ca71ddeb0e1677bd3e138516e295cad8c8bf4b46 [file] [log] [blame]
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkNullGLContext_DEFINED
#define SkNullGLContext_DEFINED
#include "gl/SkGLContext.h"
class SK_API SkNullGLContext : public SkGLContext {
public:
~SkNullGLContext() override;
void makeCurrent() const override;
void swapBuffers() const override {};
static SkNullGLContext* Create(GrGLStandard);
class ContextState;
private:
SkNullGLContext();
ContextState* fState;
};
#endif