blob: 921f583f54dab04803937091b55bc1e0a12fdf9f [file] [log] [blame]
bsalomon@google.come2953132011-10-13 13:33:08 +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#include "SkGLContext.h"
9
10SkGLContext::SkGLContext()
11 : fFBO(0) {
12}
13
14SkGLContext::~SkGLContext() {
15}
16
17bool SkGLContext::init(int width, int height) {
18 return false;
19}