blob: 399d81690e435cd9e4873fb7d7e1f693ab807f3b [file] [log] [blame]
[email protected]24edbd02011-04-14 00:11:591// 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]43390252011-07-28 12:54:207#include "ui/gfx/gl/gl_context.h"
8
[email protected]24edbd02011-04-14 00:11:599namespace gfx {
10
[email protected]ffae4022011-05-12 22:54:2911GLSurface::GLSurface() {
12}
13
14GLSurface::~GLSurface() {
15}
16
[email protected]7b1a3da22011-04-27 23:56:3317bool GLSurface::Initialize()
18{
19 return true;
20}
21
[email protected]24edbd02011-04-14 00:11:5922unsigned int GLSurface::GetBackingFrameBufferObject() {
23 return 0;
24}
25
[email protected]43390252011-07-28 12:54:2026void GLSurface::OnMakeCurrent(GLContext* context) {
[email protected]2e7bbf22011-07-22 18:41:2927}
28
[email protected]24edbd02011-04-14 00:11:5929} // namespace gfx