X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fprogram.h;h=fc60db46fcc2265af0b1ad9282eec1b5b19f6dcb;hp=8c1356c2678a7ec306ddfe60368d12dd5805caac;hb=bec07999d95b76f4b47cffcc564d0cd0afc0435e;hpb=d971f8d4848c0b3b453c626a2dafe19445e3e5a8 diff --git a/source/program.h b/source/program.h index 8c1356c2..fc60db46 100644 --- a/source/program.h +++ b/source/program.h @@ -6,7 +6,6 @@ #include #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,9 +84,6 @@ public: /// Constructs an empty Program with no Shaders attached. Program(); - /// Constructs a Program with standard features. - Program(const ProgramBuilder::StandardFeatures &); - /// Constructs a Program from unified source code using ProgramCompiler. Program(const std::string &);