1 // Copyright (c) 2012 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.
5 #include "ui/gl/gl_surface.h"
7 #include "base/debug/trace_event.h"
8 #include "base/logging.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "third_party/mesa/MesaLib/include/GL/osmesa.h"
11 #include "ui/gl/gl_bindings.h"
12 #include "ui/gl/gl_implementation.h"
13 #include "ui/gl/gl_surface_cgl.h"
14 #include "ui/gl/gl_surface_osmesa.h"
15 #include "ui/gl/gl_surface_stub.h"
18 #include "ui/gl/gl_surface_nsview.h"
23 bool GLSurface::InitializeOneOffInternal() {
24 switch (GetGLImplementation()) {
25 case kGLImplementationDesktopGL
:
26 case kGLImplementationAppleGL
:
27 if (!GLSurfaceCGL::InitializeOneOff()) {
28 LOG(ERROR
) << "GLSurfaceCGL::InitializeOneOff failed.";
38 scoped_refptr
<GLSurface
> GLSurface::CreateViewGLSurface(
40 gfx::AcceleratedWidget window
) {
41 TRACE_EVENT0("gpu", "GLSurface::CreateViewGLSurface");
46 switch (GetGLImplementation()) {
47 case kGLImplementationDesktopGL
:
48 case kGLImplementationAppleGL
: {
49 scoped_refptr
<GLSurface
> surface(new GLSurfaceNSView(window
));
50 if (!surface
->Initialize())
55 case kGLImplementationMockGL
:
56 return new GLSurfaceStub
;
62 return CreateOffscreenGLSurface(software
, gfx::Size(1,1));
66 scoped_refptr
<GLSurface
> GLSurface::CreateOffscreenGLSurface(
68 const gfx::Size
& size
) {
69 TRACE_EVENT0("gpu", "GLSurface::CreateOffscreenGLSurface");
73 switch (GetGLImplementation()) {
74 case kGLImplementationOSMesaGL
: {
75 scoped_refptr
<GLSurface
> surface(new GLSurfaceOSMesa(OSMESA_RGBA
,
77 if (!surface
->Initialize())
82 case kGLImplementationDesktopGL
:
83 case kGLImplementationAppleGL
: {
84 scoped_refptr
<GLSurface
> surface(new NoOpGLSurfaceCGL(size
));
85 if (!surface
->Initialize())
90 case kGLImplementationMockGL
:
91 return new GLSurfaceStub
;