X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fprogram.cpp;h=a5128e9b77436ef13f24bbf1de7b2e7f3b263526;hb=5f78db03b3285c977760a41da1e3927720e50352;hp=d8827ab5d0f5f095fed0d53424571aff7147f472;hpb=a170be7d2b295c4a3bbcea6585634bece3e1638b;p=libs%2Fgl.git diff --git a/source/program.cpp b/source/program.cpp index d8827ab5..a5128e9b 100644 --- a/source/program.cpp +++ b/source/program.cpp @@ -28,6 +28,8 @@ Program::Program() init(); } +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" Program::Program(const ProgramBuilder::StandardFeatures &features) { init(); @@ -36,6 +38,7 @@ Program::Program(const ProgramBuilder::StandardFeatures &features) builder.add_shaders(*this); link(); } +#pragma GCC diagnostic pop Program::Program(const std::string &source) { @@ -129,7 +132,6 @@ void Program::link() (*i)->compile(); uniforms.clear(); - legacy_vars = false; glLinkProgram(id); linked = get_program_i(id, GL_LINK_STATUS); @@ -144,6 +146,26 @@ void Program::link() query_uniforms(); query_attributes(); + + for(UniformMap::const_iterator i=uniforms.begin(); i!=uniforms.end(); ++i) + require_type(i->second.type); + for(AttributeMap::const_iterator i=attributes.begin(); i!=attributes.end(); ++i) + require_type(i->second.type); +} + +void Program::require_type(GLenum t) +{ + switch(t) + { + case GL_FLOAT_MAT2x3: + case GL_FLOAT_MAT2x4: + case GL_FLOAT_MAT3x2: + case GL_FLOAT_MAT3x4: + case GL_FLOAT_MAT4x2: + case GL_FLOAT_MAT4x3: + { static Require _req(NV_non_square_matrices); } + break; + } } void Program::query_uniforms() @@ -173,8 +195,6 @@ void Program::query_uniforms() info.type = type; uniforms_by_index[i] = &info; } - else - legacy_vars = true; } if(ARB_uniform_buffer_object) @@ -294,8 +314,6 @@ void Program::query_attributes() info.size = size; info.type = type; } - else - legacy_vars = true; } } @@ -410,10 +428,13 @@ void Program::Loader::geometry_shader(const string &src) void Program::Loader::standard() { +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" ProgramBuilder::StandardFeatures feat; load_sub(feat); ProgramBuilder builder(feat); builder.add_shaders(obj); +#pragma GCC diagnostic pop } void Program::Loader::vertex_shader(const string &src)