diff Framework/OpenGL/OpenGLShader.h @ 579:fadacfbf5538

OpenGL programs and textures
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 19 Apr 2019 16:06:45 +0200
parents 21fd70df3fc9
children d933fc19214a
line wrap: on
line diff
--- a/Framework/OpenGL/OpenGLShader.h	Fri Apr 19 15:57:46 2019 +0200
+++ b/Framework/OpenGL/OpenGLShader.h	Fri Apr 19 16:06:45 2019 +0200
@@ -21,7 +21,6 @@
 
 #pragma once
 
-
 #if !defined(ORTHANC_ENABLE_OPENGL)
 #  error The macro ORTHANC_ENABLE_OPENGL must be defined
 #endif
@@ -30,8 +29,7 @@
 #  error Support for OpenGL is disabled
 #endif
 
-#include <EmbeddedResources.h>
-
+#include <string>
 #include <GL/gl.h>
 #include <boost/noncopyable.hpp>
 
@@ -49,9 +47,6 @@
       OpenGLShader(GLenum type,
                    const std::string& source);
 
-      OpenGLShader(GLenum type,
-                   Orthanc::EmbeddedResources::FileResourceId resource);
-
       ~OpenGLShader();
 
       bool IsValid() const