refactor gpu plugins and Makefiles
[pcsx_rearmed.git] / plugins / gpulib / cspace.h
diff --git a/plugins/gpulib/cspace.h b/plugins/gpulib/cspace.h
new file mode 100644 (file)
index 0000000..644143b
--- /dev/null
@@ -0,0 +1,12 @@
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+void bgr555_to_rgb565(void *dst, const void *src, int bytes);
+void bgr888_to_rgb888(void *dst, const void *src, int bytes);
+void bgr888_to_rgb565(void *dst, const void *src, int bytes);
+
+#ifdef __cplusplus
+}
+#endif