summaryrefslogtreecommitdiffstats
path: root/video/gpu_memcpy.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/gpu_memcpy.h')
-rw-r--r--video/gpu_memcpy.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/video/gpu_memcpy.h b/video/gpu_memcpy.h
new file mode 100644
index 0000000000..c62f754aac
--- /dev/null
+++ b/video/gpu_memcpy.h
@@ -0,0 +1,8 @@
+#ifndef GPU_MEMCPY_SSE4_H_
+#define GPU_MEMCPY_SSE4_H_
+
+#include <stddef.h>
+
+void *gpu_memcpy(void *restrict d, const void *restrict s, size_t size);
+
+#endif