We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59614e1 commit 5be03afCopy full SHA for 5be03af
jme3-core/src/main/java/com/jme3/material/Technique.java
@@ -184,9 +184,9 @@ public DefineList getAllDefines() {
184
* @return the sort ID for this technique instance.
185
*/
186
public int getSortId() {
187
- int hash = 17;
188
- hash = hash * 23 + def.getSortId();
189
- hash = hash * 23 + dynamicDefines.hashCode();
190
- return hash;
+ int hash = 17;
+ hash = hash * 23 + def.getSortId();
+ hash = hash * 23 + paramDefines.hashCode();
+ return hash;
191
}
192
0 commit comments