Browse Source

Merge pull request #58855 from akien-mga/3.x-gles2-fix-VersionKey-comparison

Rémi Verschelde 3 years ago
parent
commit
b6a6c90ea2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/gles2/shader_gles2.cpp

+ 1 - 1
drivers/gles2/shader_gles2.cpp

@@ -77,7 +77,7 @@ GLint ShaderGLES2::get_uniform_location(int p_index) const {
 }
 }
 
 
 bool ShaderGLES2::bind() {
 bool ShaderGLES2::bind() {
-	if (active != this || !version || new_conditional_version.key != conditional_version.key) {
+	if (active != this || !version || !(new_conditional_version == conditional_version)) {
 		conditional_version = new_conditional_version;
 		conditional_version = new_conditional_version;
 		version = get_current_version();
 		version = get_current_version();
 	} else {
 	} else {