[email protected] | 24edbd0 | 2011-04-14 00:11:59 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #include "ui/gfx/gl/gl_surface.h" | ||||
6 | |||||
[email protected] | 4339025 | 2011-07-28 12:54:20 | [diff] [blame^] | 7 | #include "ui/gfx/gl/gl_context.h" |
8 | |||||
[email protected] | 24edbd0 | 2011-04-14 00:11:59 | [diff] [blame] | 9 | namespace gfx { |
10 | |||||
[email protected] | ffae402 | 2011-05-12 22:54:29 | [diff] [blame] | 11 | GLSurface::GLSurface() { |
12 | } | ||||
13 | |||||
14 | GLSurface::~GLSurface() { | ||||
15 | } | ||||
16 | |||||
[email protected] | 7b1a3da2 | 2011-04-27 23:56:33 | [diff] [blame] | 17 | bool GLSurface::Initialize() |
18 | { | ||||
19 | return true; | ||||
20 | } | ||||
21 | |||||
[email protected] | 24edbd0 | 2011-04-14 00:11:59 | [diff] [blame] | 22 | unsigned int GLSurface::GetBackingFrameBufferObject() { |
23 | return 0; | ||||
24 | } | ||||
25 | |||||
[email protected] | 4339025 | 2011-07-28 12:54:20 | [diff] [blame^] | 26 | void GLSurface::OnMakeCurrent(GLContext* context) { |
[email protected] | 2e7bbf2 | 2011-07-22 18:41:29 | [diff] [blame] | 27 | } |
28 | |||||
[email protected] | 24edbd0 | 2011-04-14 00:11:59 | [diff] [blame] | 29 | } // namespace gfx |