vulkan: implement setBlendState

This commit is contained in:
niki
2022-07-13 16:37:16 +02:00
parent 04fb789649
commit a591b2b99e
4 changed files with 74 additions and 8 deletions
+3
View File
@@ -23,6 +23,9 @@ namespace love {
static std::string getVendorName(uint32_t vendorId);
static std::string getVulkanApiVersion(uint32_t apiVersion);
static VkPrimitiveTopology getPrimitiveTypeTopology(graphics::PrimitiveType);
static VkBlendFactor getBlendFactor(BlendFactor);
static VkBlendOp getBlendOp(BlendOperation);
static VkBool32 getBool(bool);
};
}
}