瀏覽代碼

Merge pull request #36357 from MateoMiccino/rendering_vulkan_vertexdescriptionkey_fix

rendering_vulkan: VertexDescriptionKey equal comparator was checking …
Rémi Verschelde 5 年之前
父節點
當前提交
05e610b78c
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      drivers/vulkan/rendering_device_vulkan.h

+ 3 - 1
drivers/vulkan/rendering_device_vulkan.h

@@ -354,7 +354,9 @@ class RenderingDeviceVulkan : public RenderingDevice {
 					if (a.stride != b.stride) {
 						return false;
 					}
-					return a.frequency != b.frequency;
+					if (a.frequency != b.frequency) {
+						return false;
+					}
 				}
 				return true; //they are equal
 			}