You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-23 15:16:17 +00:00
Removed unnecessary assignments
This commit is contained in:
@@ -219,20 +219,15 @@ ShaderGLES3::Version *ShaderGLES3::get_current_version() {
|
||||
strings.push_back("#version 300 es\n");
|
||||
#endif
|
||||
|
||||
int define_line_ofs = 1;
|
||||
|
||||
for (int i = 0; i < custom_defines.size(); i++) {
|
||||
|
||||
strings.push_back(custom_defines[i].get_data());
|
||||
define_line_ofs++;
|
||||
}
|
||||
|
||||
for (int j = 0; j < conditional_count; j++) {
|
||||
|
||||
bool enable = ((1 << j) & conditional_version.version);
|
||||
strings.push_back(enable ? conditional_defines[j] : "");
|
||||
if (enable)
|
||||
define_line_ofs++;
|
||||
|
||||
if (enable) {
|
||||
DEBUG_PRINT(conditional_defines[j]);
|
||||
@@ -253,7 +248,6 @@ ShaderGLES3::Version *ShaderGLES3::get_current_version() {
|
||||
ERR_FAIL_COND_V(!custom_code_map.has(conditional_version.code_version), NULL);
|
||||
cc = &custom_code_map[conditional_version.code_version];
|
||||
v.code_version = cc->version;
|
||||
define_line_ofs += 2;
|
||||
}
|
||||
|
||||
/* CREATE PROGRAM */
|
||||
|
||||
Reference in New Issue
Block a user