gl_display_manager.cc 462 B

123456789101112131415
  1. // Copyright (c) 2022 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. #include "ui/gl/gl_display_manager.h"
  5. namespace gl {
  6. #if defined(USE_EGL)
  7. template class EXPORT_TEMPLATE_DEFINE(GL_EXPORT) GLDisplayManager<GLDisplayEGL>;
  8. #endif
  9. #if defined(USE_GLX)
  10. template class EXPORT_TEMPLATE_DEFINE(GL_EXPORT) GLDisplayManager<GLDisplayX11>;
  11. #endif
  12. } // namespace gl