]> git.tdb.fi Git - libs/gl.git/blobdiff - source/program.h
Remove the deprecated ProgramBuilder class
[libs/gl.git] / source / program.h
index faaf2ac4c081c8fcadc84e366244eda74fe1a55c..fc60db46fcc2265af0b1ad9282eec1b5b19f6dcb 100644 (file)
@@ -6,7 +6,6 @@
 #include <msp/datafile/objectloader.h>
 #include "bindable.h"
 #include "gl.h"
-#include "programbuilder.h"
 #include "vertexformat.h"
 
 namespace Msp {
@@ -32,7 +31,6 @@ public:
                void attribute(unsigned, const std::string &);
                void fragment_shader(const std::string &);
                void geometry_shader(const std::string &);
-               void standard();
                void vertex_shader(const std::string &);
        };
 
@@ -86,12 +84,6 @@ public:
        /// Constructs an empty Program with no Shaders attached.
        Program();
 
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
-       /// Constructs a Program with standard features.
-       DEPRECATED Program(const ProgramBuilder::StandardFeatures &);
-#pragma GCC diagnostic pop
-
        /// Constructs a Program from unified source code using ProgramCompiler.
        Program(const std::string &);