X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fprogrambuilder.cpp;h=de1fb1604db2ea5dcd77c20a2fbf036f18fe3894;hb=d70abd1a337cb6604170b5d4120fd4f223b4d7d8;hp=a2d49ac83c7ba6cb247f6a0a7df7808883b96da5;hpb=a005e42f923c3c9ea973b1d5ac283441104d8c17;p=libs%2Fgl.git diff --git a/source/programbuilder.cpp b/source/programbuilder.cpp index a2d49ac8..de1fb160 100644 --- a/source/programbuilder.cpp +++ b/source/programbuilder.cpp @@ -44,7 +44,7 @@ Naming conventions: anything that might need them. */ const ProgramBuilder::VariableDefinition ProgramBuilder::standard_variables[] = { - { FRAGMENT, "gl_FragColor", "vec4", "frag_color", "g" }, + { FRAGMENT, "gl_FragColor", "vec4", "frag_color", 0 }, { FRAGMENT, "frag_color", "vec4", "basic_color", "!e!l" }, { FRAGMENT, "frag_color", "vec4", "vec4(rgb_surface, surface_alpha)", "!el" }, { FRAGMENT, "frag_color", "vec4", "vec4(rgb_surface+rgb_reflection, surface_alpha)", "e" }, @@ -236,9 +236,12 @@ ProgramBuilder::ProgramBuilder(const StandardFeatures &f): } } - if((get_gl_api()==OPENGL && !features.legacy) || (get_gl_api()==OPENGL_ES2 && get_glsl_version()>=Version(3, 0))) + if(!features.legacy) { + aliases["texture1D"] = "texture"; aliases["texture2D"] = "texture"; + aliases["texture3D"] = "texture"; + aliases["textureCube"] = "texture"; aliases["shadow2D"] = "texture"; } else @@ -345,8 +348,9 @@ void ProgramBuilder::add_shaders(Program &prog) const for(list::iterator i=variables.end(); i!=variables.begin(); ) (--i)->resolve_array(features); + bool legacy_variables = evaluate_flags("g"); for(list::const_iterator i=resolved_vars.begin(); i!=resolved_vars.end(); ++i) - (*i)->check_inline(features.legacy, !optimize); + (*i)->check_inline(legacy_variables, !optimize); prog.attach_shader_owned(new VertexShader(create_source(resolved_vars, VERTEX))); prog.attach_shader_owned(new FragmentShader(create_source(resolved_vars, FRAGMENT))); @@ -376,7 +380,6 @@ string ProgramBuilder::create_source(const list &variables, Va { string source; - bool legacy_qualifiers = features.legacy || (get_gl_api()==OPENGL_ES2 && !(get_glsl_version()>=Version(3, 0))); bool use_blocks = !features.legacy && ARB_uniform_buffer_object; if(!features.legacy) @@ -385,7 +388,6 @@ string ProgramBuilder::create_source(const list &variables, Va { if(use_blocks) source += "#version 300 es\n"; - source += "precision mediump float;\n"; } else { @@ -395,6 +397,9 @@ string ProgramBuilder::create_source(const list &variables, Va } } + if(get_gl_api()==OPENGL_ES2) + source += "precision mediump float;\n"; + set declared_types; set uniform_blocks; for(list::const_iterator i=variables.begin(); i!=variables.end(); ++i) @@ -431,13 +436,13 @@ string ProgramBuilder::create_source(const list &variables, Va if(iface&INPUT) { - const char *qualifier = (legacy_qualifiers ? scope==VERTEX ? "attribute" : "varying" : "in"); + const char *qualifier = (features.legacy ? scope==VERTEX ? "attribute" : "varying" : "in"); source += format("%s %s;\n", qualifier, (*i)->create_declaration(interfaces[scope-1])); } if(iface&OUTPUT) { - const char *qualifier = (legacy_qualifiers ? "varying" : "out"); + const char *qualifier = (features.legacy ? "varying" : "out"); source += format("%s %s;\n", qualifier, (*i)->create_declaration(interfaces[scope])); } } @@ -718,9 +723,13 @@ ProgramBuilder::StandardFeatures::StandardFeatures(): specular(false), normalmap(false), shadow(false), - reflection(false), - legacy(get_gl_api()==OPENGL && !(get_glsl_version()>=Version(1, 30))) -{ } + reflection(false) +{ + if(get_gl_api()==OPENGL_ES2) + legacy = !(get_glsl_version()>=Version(3, 0)); + else + legacy = !(get_glsl_version()>=Version(1, 30)); +} string ProgramBuilder::StandardFeatures::create_flags() const { @@ -743,7 +752,7 @@ string ProgramBuilder::StandardFeatures::create_flags() const flags += 's'; if(reflection) flags += 'e'; - if(legacy) + if(legacy && get_gl_api()==OPENGL) flags += 'g'; return flags;