comparison Framework/OpenGL/OpenGLIncludes.h @ 1397:1c2d065ba372

cleanup
author Alain Mazy <alain@mazy.be>
date Wed, 29 Apr 2020 20:41:36 +0200
parents 7ec8fea061b9
children 28c64c246312
comparison
equal deleted inserted replaced
1396:dd2b75ee644b 1397:1c2d065ba372
38 // On Windows, use the compatibility headers provided by glew 38 // On Windows, use the compatibility headers provided by glew
39 # include <GL/glew.h> 39 # include <GL/glew.h>
40 #else 40 #else
41 # include <GL/gl.h> 41 # include <GL/gl.h>
42 # include <GL/glext.h> 42 # include <GL/glext.h>
43 #endif
44
45 #if ORTHANC_ENABLE_QT == 1
46 // TODO: currently there are no checks in QT
47
48 # define ORTHANC_OPENGL_CHECK(name)
49 # define ORTHANC_OPENGL_TRACE_CURRENT_CONTEXT(msg)
50 # define ORTHANC_CHECK_CURRENT_CONTEXT(context)
51
52 #endif 43 #endif
53 44
54 #if ORTHANC_ENABLE_SDL == 1 45 #if ORTHANC_ENABLE_SDL == 1
55 # include <SDL_video.h> 46 # include <SDL_video.h>
56 47