blob: 4f7c15380c2770e71ccff94f15245509c9d9da88 (
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
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef MOZ_WIDGET_GTK
# include <gdk/gdk.h>
# include <gdk/gdkx.h>
#endif
#include "GLContextProvider.h"
namespace mozilla::gl {
using namespace mozilla::gfx;
using namespace mozilla::widget;
static class GLContextProviderX11 sGLContextProviderX11;
static class GLContextProviderEGL sGLContextProviderEGL;
already_AddRefed<GLContext> GLContextProviderWayland::CreateForCompositorWidget(
CompositorWidget* aCompositorWidget, bool aWebRender,
bool aForceAccelerated) {
if (GDK_IS_X11_DISPLAY(gdk_display_get_default())) {
return sGLContextProviderX11.CreateForCompositorWidget(
aCompositorWidget, aWebRender, aForceAccelerated);
} else {
return sGLContextProviderEGL.CreateForCompositorWidget(
aCompositorWidget, aWebRender, aForceAccelerated);
}
}
/*static*/
already_AddRefed<GLContext> GLContextProviderWayland::CreateHeadless(
const GLContextCreateDesc& desc, nsACString* const out_failureId) {
if (GDK_IS_X11_DISPLAY(gdk_display_get_default())) {
return sGLContextProviderX11.CreateHeadless(desc, out_failureId);
} else {
return sGLContextProviderEGL.CreateHeadless(desc, out_failureId);
}
}
/*static*/
GLContext* GLContextProviderWayland::GetGlobalContext() {
if (GDK_IS_X11_DISPLAY(gdk_display_get_default())) {
return sGLContextProviderX11.GetGlobalContext();
} else {
return sGLContextProviderEGL.GetGlobalContext();
}
}
/*static*/
void GLContextProviderWayland::Shutdown() {
if (GDK_IS_X11_DISPLAY(gdk_display_get_default())) {
sGLContextProviderX11.Shutdown();
} else {
sGLContextProviderEGL.Shutdown();
}
}
} // namespace mozilla::gl
|