GLVis  v4.2
Accurate and flexible finite element visualization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
platform_gl.hpp
Go to the documentation of this file.
1 // Copyright (c) 2010-2022, Lawrence Livermore National Security, LLC. Produced
2 // at the Lawrence Livermore National Laboratory. All Rights reserved. See files
3 // LICENSE and NOTICE for details. LLNL-CODE-443271.
4 //
5 // This file is part of the GLVis visualization tool and library. For more
6 // information and source code availability see https://glvis.org.
7 //
8 // GLVis is free software; you can redistribute it and/or modify it under the
9 // terms of the BSD-3 license. We welcome feedback and contributions, see file
10 // CONTRIBUTING.md for details.
11 
12 #ifndef GLVIS_PLATFORM_GL_HPP
13 #define GLVIS_PLATFORM_GL_HPP
14 
15 #include <GL/glew.h>
16 #ifndef __EMSCRIPTEN__
17 #include <SDL2/SDL.h>
18 #include <SDL2/SDL_opengl.h>
19 #else
20 #include <SDL.h>
21 #include <SDL_opengl.h>
22 #endif
23 
24 #endif