comparison Framework/OpenGL/OpenGLTexture.h @ 581:d933fc19214a

fix windows build
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 19 Apr 2019 16:17:13 +0200
parents fadacfbf5538
children e36e69a380a5
comparison
equal deleted inserted replaced
580:2faf9b53d6d9 581:d933fc19214a
27 27
28 #if ORTHANC_ENABLE_OPENGL != 1 28 #if ORTHANC_ENABLE_OPENGL != 1
29 # error Support for OpenGL is disabled 29 # error Support for OpenGL is disabled
30 #endif 30 #endif
31 31
32 #if defined(__APPLE__)
33 # include <OpenGL/gl.h>
34 # include <OpenGL/glext.h>
35 #else
36 # include <GL/gl.h>
37 # include <GL/glext.h>
38 #endif
39
32 #include <Core/Images/ImageAccessor.h> 40 #include <Core/Images/ImageAccessor.h>
33 41
34 #include <GL/gl.h>
35 #include <boost/noncopyable.hpp> 42 #include <boost/noncopyable.hpp>
36 43
37 44
38 namespace OrthancStone 45 namespace OrthancStone
39 { 46 {