blob: 68807e7c574d5b5a819d204345ae2c7e3639d6e5 [file] [log] [blame]
bsalomon@google.com74913722011-10-27 20:44:19 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
tomhudson@google.com6bf38b52012-02-14 15:11:59 +00009#include "gl/SkNullGLContext.h"
bsalomon@google.com74913722011-10-27 20:44:19 +000010
kkinnunen30bc88c2014-10-15 23:03:54 -070011SkNullGLContext::SkNullGLContext() {
12 fGL.reset(GrGLCreateNullInterface());
13}
14
15SkNullGLContext::~SkNullGLContext() {
16 fGL.reset(NULL);
17}
18