You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Implemented local shader constants
This commit is contained in:
@@ -555,7 +555,12 @@ String ShaderCompilerGLES3::_dump_node_code(SL::Node *p_node, int p_level, Gener
|
||||
case SL::Node::TYPE_VARIABLE_DECLARATION: {
|
||||
SL::VariableDeclarationNode *vdnode = (SL::VariableDeclarationNode *)p_node;
|
||||
|
||||
String declaration = _prestr(vdnode->precision) + _typestr(vdnode->datatype);
|
||||
String declaration;
|
||||
if (vdnode->is_const) {
|
||||
declaration += "const ";
|
||||
}
|
||||
declaration += _prestr(vdnode->precision);
|
||||
declaration += _typestr(vdnode->datatype);
|
||||
for (int i = 0; i < vdnode->declarations.size(); i++) {
|
||||
if (i > 0) {
|
||||
declaration += ",";
|
||||
@@ -609,29 +614,34 @@ String ShaderCompilerGLES3::_dump_node_code(SL::Node *p_node, int p_level, Gener
|
||||
} break;
|
||||
case SL::Node::TYPE_ARRAY_DECLARATION: {
|
||||
|
||||
SL::ArrayDeclarationNode *vdnode = (SL::ArrayDeclarationNode *)p_node;
|
||||
SL::ArrayDeclarationNode *adnode = (SL::ArrayDeclarationNode *)p_node;
|
||||
|
||||
String declaration = _prestr(vdnode->precision) + _typestr(vdnode->datatype);
|
||||
for (int i = 0; i < vdnode->declarations.size(); i++) {
|
||||
String declaration;
|
||||
if (adnode->is_const) {
|
||||
declaration += "const ";
|
||||
}
|
||||
declaration += _prestr(adnode->precision);
|
||||
declaration += _typestr(adnode->datatype);
|
||||
for (int i = 0; i < adnode->declarations.size(); i++) {
|
||||
if (i > 0) {
|
||||
declaration += ",";
|
||||
} else {
|
||||
declaration += " ";
|
||||
}
|
||||
declaration += _mkid(vdnode->declarations[i].name);
|
||||
declaration += _mkid(adnode->declarations[i].name);
|
||||
declaration += "[";
|
||||
declaration += itos(vdnode->declarations[i].size);
|
||||
declaration += itos(adnode->declarations[i].size);
|
||||
declaration += "]";
|
||||
int sz = vdnode->declarations[i].initializer.size();
|
||||
int sz = adnode->declarations[i].initializer.size();
|
||||
if (sz > 0) {
|
||||
declaration += "=";
|
||||
declaration += _typestr(vdnode->datatype);
|
||||
declaration += _typestr(adnode->datatype);
|
||||
declaration += "[";
|
||||
declaration += itos(sz);
|
||||
declaration += "]";
|
||||
declaration += "(";
|
||||
for (int j = 0; j < sz; j++) {
|
||||
declaration += _dump_node_code(vdnode->declarations[i].initializer[j], p_level, r_gen_code, p_actions, p_default_actions, p_assigning);
|
||||
declaration += _dump_node_code(adnode->declarations[i].initializer[j], p_level, r_gen_code, p_actions, p_default_actions, p_assigning);
|
||||
if (j != sz - 1) {
|
||||
declaration += ", ";
|
||||
}
|
||||
@@ -643,43 +653,43 @@ String ShaderCompilerGLES3::_dump_node_code(SL::Node *p_node, int p_level, Gener
|
||||
code += declaration;
|
||||
} break;
|
||||
case SL::Node::TYPE_ARRAY: {
|
||||
SL::ArrayNode *vnode = (SL::ArrayNode *)p_node;
|
||||
SL::ArrayNode *anode = (SL::ArrayNode *)p_node;
|
||||
|
||||
if (p_assigning && p_actions.write_flag_pointers.has(vnode->name)) {
|
||||
*p_actions.write_flag_pointers[vnode->name] = true;
|
||||
if (p_assigning && p_actions.write_flag_pointers.has(anode->name)) {
|
||||
*p_actions.write_flag_pointers[anode->name] = true;
|
||||
}
|
||||
|
||||
if (p_default_actions.usage_defines.has(vnode->name) && !used_name_defines.has(vnode->name)) {
|
||||
String define = p_default_actions.usage_defines[vnode->name];
|
||||
if (p_default_actions.usage_defines.has(anode->name) && !used_name_defines.has(anode->name)) {
|
||||
String define = p_default_actions.usage_defines[anode->name];
|
||||
if (define.begins_with("@")) {
|
||||
define = p_default_actions.usage_defines[define.substr(1, define.length())];
|
||||
}
|
||||
r_gen_code.defines.push_back(define.utf8());
|
||||
used_name_defines.insert(vnode->name);
|
||||
used_name_defines.insert(anode->name);
|
||||
}
|
||||
|
||||
if (p_actions.usage_flag_pointers.has(vnode->name) && !used_flag_pointers.has(vnode->name)) {
|
||||
*p_actions.usage_flag_pointers[vnode->name] = true;
|
||||
used_flag_pointers.insert(vnode->name);
|
||||
if (p_actions.usage_flag_pointers.has(anode->name) && !used_flag_pointers.has(anode->name)) {
|
||||
*p_actions.usage_flag_pointers[anode->name] = true;
|
||||
used_flag_pointers.insert(anode->name);
|
||||
}
|
||||
|
||||
if (p_default_actions.renames.has(vnode->name))
|
||||
code = p_default_actions.renames[vnode->name];
|
||||
if (p_default_actions.renames.has(anode->name))
|
||||
code = p_default_actions.renames[anode->name];
|
||||
else
|
||||
code = _mkid(vnode->name);
|
||||
code = _mkid(anode->name);
|
||||
|
||||
if (vnode->call_expression != NULL) {
|
||||
if (anode->call_expression != NULL) {
|
||||
code += ".";
|
||||
code += _dump_node_code(vnode->call_expression, p_level, r_gen_code, p_actions, p_default_actions, p_assigning);
|
||||
code += _dump_node_code(anode->call_expression, p_level, r_gen_code, p_actions, p_default_actions, p_assigning);
|
||||
}
|
||||
|
||||
if (vnode->index_expression != NULL) {
|
||||
if (anode->index_expression != NULL) {
|
||||
code += "[";
|
||||
code += _dump_node_code(vnode->index_expression, p_level, r_gen_code, p_actions, p_default_actions, p_assigning);
|
||||
code += _dump_node_code(anode->index_expression, p_level, r_gen_code, p_actions, p_default_actions, p_assigning);
|
||||
code += "]";
|
||||
}
|
||||
|
||||
if (vnode->name == time_name) {
|
||||
if (anode->name == time_name) {
|
||||
if (current_func_name == vertex_name) {
|
||||
r_gen_code.uses_vertex_time = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user