Fix uniforms with the same name shadowing others

Follow-up of #7344
This commit is contained in:
Pedro J. Estébanez 2017-01-10 17:05:09 +01:00
parent 40de567297
commit 8589a1b117

View file

@ -571,15 +571,12 @@ Error ShaderCompilerGLES2::compile_node(SL::ProgramNode *p_program) {
global_code+=uline; global_code+=uline;
if (uniforms) { if (uniforms) {
//if (uniforms->has(E->key())) { // Check to avoid uniforms with the same name being re-added to avoid overwriting entries
// //repeated uniform, error if (!uniforms->has(E->key())) {
// ERR_EXPLAIN("Uniform already exists from other shader: "+String(E->key())); SL::Uniform u = E->get();
// ERR_FAIL_COND_V(uniforms->has(E->key()),ERR_ALREADY_EXISTS); u.order+=ubase;
// uniforms->insert(E->key(),u);
// } }
SL::Uniform u = E->get();
u.order+=ubase;
uniforms->insert(E->key(),u);
} }
} }