X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fprogram.cpp;h=81da5b96e7b50fd858e6a82d4017412711b9bb97;hb=1f71ec73edacd6c1bd230abace3cb791eb2ca759;hp=2c15bc774b248b58f56ae3019c4680b0c09859e8;hpb=fa2b4c8a93ebad2497cacfdeaa9a2c20be486520;p=libs%2Fgl.git diff --git a/source/core/program.cpp b/source/core/program.cpp index 2c15bc77..81da5b96 100644 --- a/source/core/program.cpp +++ b/source/core/program.cpp @@ -34,7 +34,7 @@ Program::Program() init(); } -Program::Program(const std::string &source) +Program::Program(const string &source) { init(); @@ -71,7 +71,7 @@ void Program::init() id = glCreateProgram(); module = 0; - bindings = 0; + transient = 0; linked = false; } @@ -160,10 +160,10 @@ void Program::add_glsl_stages(const GlslModule &mod, const map &spe compile_glsl_stage(stage_id); } - if(!bindings) - bindings = new Bindings; - bindings->textures = compiler.get_texture_bindings(); - bindings->blocks = compiler.get_uniform_block_bindings(); + if(!transient) + transient = new TransientData; + transient->textures = compiler.get_texture_bindings(); + transient->blocks = compiler.get_uniform_block_bindings(); } void Program::compile_glsl_stage(unsigned stage_id) @@ -214,12 +214,12 @@ void Program::add_spirv_stages(const SpirVModule &mod, const map &s const vector &code = mod.get_code(); glShaderBinary(stage_ids.size(), &stage_ids[0], GL_SHADER_BINARY_FORMAT_SPIR_V, &code[0], code.size()*4); - const vector &spec_consts = mod.get_spec_constants(); + const vector &spec_consts = mod.get_spec_constants(); vector spec_id_array; vector spec_value_array; spec_id_array.reserve(spec_consts.size()); spec_value_array.reserve(spec_consts.size()); - for(vector::const_iterator i=spec_consts.begin(); i!=spec_consts.end(); ++i) + for(vector::const_iterator i=spec_consts.begin(); i!=spec_consts.end(); ++i) { map::const_iterator j = spec_values.find(i->name); if(j!=spec_values.end()) @@ -309,12 +309,12 @@ void Program::link() { query_uniforms(); query_attributes(); - if(bindings) + if(transient) { for(unsigned i=0; i::const_iterator j = bindings->blocks.find(uniform_blocks[i].name); - if(j!=bindings->blocks.end()) + map::const_iterator j = transient->blocks.find(uniform_blocks[i].name); + if(j!=transient->blocks.end()) { glUniformBlockBinding(id, i, j->second); uniform_blocks[i].bind_point = j->second; @@ -322,7 +322,7 @@ void Program::link() } Conditional _bind(!ARB_separate_shader_objects, this); - for(map::const_iterator i=bindings->textures.begin(); i!=bindings->textures.end(); ++i) + for(map::const_iterator i=transient->textures.begin(); i!=transient->textures.end(); ++i) { int location = get_uniform_location(i->first); if(location>=0) @@ -334,8 +334,8 @@ void Program::link() } } - delete bindings; - bindings = 0; + delete transient; + transient = 0; } } else if(module->get_format()==Module::SPIR_V) @@ -379,7 +379,7 @@ void Program::query_uniforms() } } - sort(uniforms, &uniform_tag_compare); + sort_member(uniforms, &UniformInfo::tag); if(ARB_uniform_buffer_object) { @@ -387,7 +387,7 @@ void Program::query_uniforms() for(unsigned i=0; i); + uniforms_by_index[i] = &*lower_bound_member(uniforms, Tag(uniform_names[i]), &UniformInfo::tag); query_uniform_blocks(uniforms_by_index); } @@ -400,6 +400,9 @@ void Program::query_uniforms() i->location = glGetUniformLocation(id, i->name.c_str()); i->block = &default_block; default_block.uniforms.push_back(&*i); + + if(is_image(i->type) && i->location>=0) + glGetUniformiv(id, i->location, &i->binding); } default_block.layout_hash = compute_layout_hash(default_block.uniforms); @@ -470,7 +473,7 @@ void Program::query_uniform_blocks(const vector &uniforms_by_inde uniforms_by_index[query_indices[j]]->matrix_stride = values[j]; } - sort(info.uniforms.begin(), info.uniforms.end(), uniform_location_compare); + sort(info.uniforms, uniform_location_compare); info.layout_hash = compute_layout_hash(info.uniforms); } } @@ -534,12 +537,13 @@ void Program::collect_uniforms() info.name = i->name; info.tag = i->name; info.location = i->location; + info.binding = i->binding; info.array_size = i->array_size; info.type = i->type; } } - sort(uniforms, &uniform_tag_compare); + sort_member(uniforms, &UniformInfo::tag); for(unsigned i=0; i::const_iterator j=names.begin(); j!=names.end(); ++j) { // The element is already known to be present - UniformInfo &uni = *lower_bound(uniforms, Tag(*j), &search); + UniformInfo &uni = *lower_bound_member(uniforms, Tag(*j), &UniformInfo::tag); block.uniforms.push_back(&uni); uni.block = █ } + sort(block.uniforms, uniform_location_compare); block.layout_hash = compute_layout_hash(block.uniforms); } @@ -632,17 +637,6 @@ bool Program::uniform_location_compare(const UniformInfo *uni1, const UniformInf return uni1->locationlocation; } -bool Program::uniform_tag_compare(const UniformInfo &uni1, const UniformInfo &uni2) -{ - return uni1.tag -bool Program::search(const T &item, const A &key) -{ - return item.*member::const_iterator i = lower_bound(uniforms, Tag(name), &search); + vector::const_iterator i = lower_bound_member(uniforms, Tag(name), &UniformInfo::tag); if(i==uniforms.end() || i->name!=name) throw key_error(name); return *i; @@ -670,7 +664,7 @@ const Program::UniformInfo &Program::get_uniform_info(const string &name) const const Program::UniformInfo &Program::get_uniform_info(Tag tag) const { - vector::const_iterator i = lower_bound(uniforms, tag, &search); + vector::const_iterator i = lower_bound_member(uniforms, tag, &UniformInfo::tag); if(i==uniforms.end() || i->tag!=tag) throw key_error(tag); return *i; @@ -681,19 +675,25 @@ int Program::get_uniform_location(const string &name) const if(name[name.size()-1]==']') throw invalid_argument("Program::get_uniform_location"); - vector::const_iterator i = lower_bound(uniforms, Tag(name), &search); + vector::const_iterator i = lower_bound_member(uniforms, Tag(name), &UniformInfo::tag); return i!=uniforms.end() && i->name==name && i->block->bind_point<0 ? i->location : -1; } int Program::get_uniform_location(Tag tag) const { - vector::const_iterator i = lower_bound(uniforms, tag, &search); + vector::const_iterator i = lower_bound_member(uniforms, tag, &UniformInfo::tag); return i!=uniforms.end() && i->tag==tag && i->block->bind_point<0 ? i->location : -1; } +int Program::get_uniform_binding(Tag tag) const +{ + vector::const_iterator i = lower_bound_member(uniforms, tag, &UniformInfo::tag); + return i!=uniforms.end() && i->tag==tag ? i->binding : -1; +} + const Program::AttributeInfo &Program::get_attribute_info(const string &name) const { - vector::const_iterator i = lower_bound(attributes, name, &search); + vector::const_iterator i = lower_bound_member(attributes, name, &AttributeInfo::name); if(i==attributes.end() || i->name!=name) throw key_error(name); return *i; @@ -704,7 +704,7 @@ int Program::get_attribute_location(const string &name) const if(name[name.size()-1]==']') throw invalid_argument("Program::get_attribute_location"); - vector::const_iterator i = lower_bound(attributes, name, &search); + vector::const_iterator i = lower_bound_member(attributes, name, &AttributeInfo::name); return i!=attributes.end() && i->name==name ? i->location : -1; } @@ -734,7 +734,8 @@ Program::UniformInfo::UniformInfo(): array_size(0), array_stride(0), matrix_stride(0), - type(VOID) + type(VOID), + binding(-1) { }