blob: ff5c142d1ba9ac77155ae35013f1a21c850aea03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/gfx/gl/gl_context.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "third_party/mesa/MesaLib/include/GL/osmesa.h"
#include "ui/gfx/gl/gl_bindings.h"
#include "ui/gfx/gl/gl_context_egl.h"
#include "ui/gfx/gl/gl_context_osmesa.h"
#include "ui/gfx/gl/gl_context_stub.h"
#include "ui/gfx/gl/gl_context_wgl.h"
#include "ui/gfx/gl/gl_implementation.h"
#include "ui/gfx/gl/gl_surface_egl.h"
#include "ui/gfx/gl/gl_surface_osmesa.h"
#include "ui/gfx/gl/gl_surface_stub.h"
#include "ui/gfx/gl/gl_surface_wgl.h"
namespace gfx {
GLContext* GLContext::CreateGLContext(GLSurface* compatible_surface,
GLContext* shared_context) {
scoped_ptr<GLSurface> surface(compatible_surface);
switch (GetGLImplementation()) {
case kGLImplementationOSMesaGL: {
scoped_ptr<GLContextOSMesa> context(
new GLContextOSMesa(static_cast<GLSurfaceOSMesa*>(
surface.release())));
if (!context->Initialize(OSMESA_RGBA, shared_context))
return NULL;
return context.release();
}
case kGLImplementationEGLGLES2: {
scoped_ptr<GLContextEGL> context(
new GLContextEGL(static_cast<GLSurfaceEGL*>(
surface.release())));
if (!context->Initialize(shared_context))
return NULL;
return context.release();
}
case kGLImplementationDesktopGL: {
scoped_ptr<GLContextWGL> context(
new GLContextWGL(static_cast<GLSurfaceWGL*>(
surface.release())));
if (!context->Initialize(shared_context))
return NULL;
return context.release();
}
case kGLImplementationMockGL:
return new GLContextStub;
default:
NOTREACHED();
return NULL;
}
}
} // namespace gfx
|