Browse Source

make vulkan::ShaderStage non abstract

niki 3 years ago
parent
commit
4e583c8cf8
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/modules/graphics/vulkan/ShaderStage.h

+ 4 - 0
src/modules/graphics/vulkan/ShaderStage.h

@@ -17,6 +17,10 @@ namespace love {
 					return shaderModule;
 				}
 
+				ptrdiff_t getHandle() const {
+					return 0;
+				}
+
 			private:
 				VkShaderModule shaderModule;
 				VkDevice device;