bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 1 | |
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 | |||||
10 | SkGLContext::SkGLContext() | ||||
11 | : fFBO(0) { | ||||
12 | } | ||||
13 | |||||
14 | SkGLContext::~SkGLContext() { | ||||
15 | } | ||||
16 | |||||
17 | bool SkGLContext::init(int width, int height) { | ||||
18 | return false; | ||||
19 | } |