File: sdl_helper.cpp

package info (click to toggle)
glvis 4.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,780 kB
  • sloc: cpp: 35,217; ansic: 5,695; sh: 340; makefile: 301; python: 193
file content (58 lines) | stat: -rw-r--r-- 1,731 bytes parent folder | download
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
// Copyright (c) 2010-2026, Lawrence Livermore National Security, LLC. Produced
// at the Lawrence Livermore National Laboratory. All Rights reserved. See files
// LICENSE and NOTICE for details. LLNL-CODE-443271.
//
// This file is part of the GLVis visualization tool and library. For more
// information and source code availability see https://glvis.org.
//
// GLVis is free software; you can redistribute it and/or modify it under the
// terms of the BSD-3 license. We welcome feedback and contributions, see file
// CONTRIBUTING.md for details.

#include <iostream>

#include "sdl_helper.hpp"

#ifndef __EMSCRIPTEN__
#include <SDL2/SDL_syswm.h>
#else
#include <SDL_syswm.h>
#endif

#include "sdl_x11.hpp"
#include "sdl_mac.hpp"
#include "sdl_windows.hpp"

using namespace std;

std::unique_ptr<SdlNativePlatform>
SdlNativePlatform::Create(SDL_Window* window)
{
   SDL_SysWMinfo sysinfo;
   SDL_VERSION(&sysinfo.version);
   if (!SDL_GetWindowWMInfo(window, &sysinfo))
   {
      cerr << "Error: unable to get window manager information for the "
           << "current window." << endl;
      return {};
   }
   switch (sysinfo.subsystem)
   {
#if defined(SDL_VIDEO_DRIVER_WINDOWS)
      case SDL_SYSWM_WINDOWS:
         return std::unique_ptr<SdlNativePlatform> {new SdlWindowsPlatform};
#endif
#if defined(SDL_VIDEO_DRIVER_COCOA)
      case SDL_SYSWM_COCOA:
         return std::unique_ptr<SdlNativePlatform> {new SdlCocoaPlatform};
#endif
#if defined(SDL_VIDEO_DRIVER_X11)
      case SDL_SYSWM_X11:
         return std::unique_ptr<SdlNativePlatform> {new SdlX11Platform};
#endif
      case SDL_SYSWM_UNKNOWN:
      default:
         cerr << "Error: unrecognized window manager system." << endl;
         return {};
   }
}