summaryrefslogtreecommitdiff
path: root/chromium/ui/gl/gl_display_manager.cc
blob: 6722875269fe3ee31bb322e586a5dbe99eb451cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2022 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/gl/gl_display_manager.h"

namespace gl {
#if defined(USE_EGL)
template class EXPORT_TEMPLATE_DEFINE(GL_EXPORT) GLDisplayManager<GLDisplayEGL>;
#endif

#if defined(USE_GLX)
template class EXPORT_TEMPLATE_DEFINE(GL_EXPORT) GLDisplayManager<GLDisplayX11>;
#endif

#if BUILDFLAG(IS_WIN)
template class EXPORT_TEMPLATE_DEFINE(GL_EXPORT) GLDisplayManager<GLDisplayWGL>;
#endif

}  // namespace gl