]> git.tdb.fi Git - libs/gl.git/blobdiff - source/backends/vulkan/blend_backend.h
Initial implementation of Vulkan backend
[libs/gl.git] / source / backends / vulkan / blend_backend.h
diff --git a/source/backends/vulkan/blend_backend.h b/source/backends/vulkan/blend_backend.h
new file mode 100644 (file)
index 0000000..c2f9b49
--- /dev/null
@@ -0,0 +1,18 @@
+#ifndef MSP_GL_BLEND_BACKEND_H_
+#define MSP_GL_BLEND_BACKEND_H_
+
+#ifndef MSP_GL_BLEND_H_
+#error "blend_backend.h requires blend.h"
+#endif
+
+namespace Msp {
+namespace GL {
+
+unsigned get_vulkan_blend_equation(BlendEquation);
+unsigned get_vulkan_blend_factor(BlendFactor);
+unsigned get_vulkan_color_mask(ColorWriteMask);
+
+} // namespace GL
+} // namespace Msp
+
+#endif