36352bf5e3
NOPRESUBMIT=true BUG=skia: DOCS_PREVIEW= https://skia.org/?cl=1037793002 Review URL: https://codereview.chromium.org/1037793002
30 lines
560 B
C++
30 lines
560 B
C++
|
|
/*
|
|
* 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
|