summaryrefslogtreecommitdiffstats
path: root/video/gpu_memcpy.h
blob: c62f754aac1580345dd25cc7eb335ea6ed3297ef (plain)
1
2
3
4
5
6
7
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