aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_neon/psx_gpu/common.h
diff options
context:
space:
mode:
authorExophase2011-12-20 23:07:20 +0200
committernotaz2011-12-20 23:40:58 +0200
commit75e28f62b2a50044b58075d63d207409e0148409 (patch)
tree0e7c7aa5e368649e675850aa1f45b87d73a66760 /plugins/gpu_neon/psx_gpu/common.h
parentb3db94096d7e5b4f60d610a441e370d639b3fd06 (diff)
downloadpcsx_rearmed-75e28f62b2a50044b58075d63d207409e0148409.tar.gz
pcsx_rearmed-75e28f62b2a50044b58075d63d207409e0148409.tar.bz2
pcsx_rearmed-75e28f62b2a50044b58075d63d207409e0148409.zip
add NEON GPU rasterizer
Diffstat (limited to 'plugins/gpu_neon/psx_gpu/common.h')
-rw-r--r--plugins/gpu_neon/psx_gpu/common.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/gpu_neon/psx_gpu/common.h b/plugins/gpu_neon/psx_gpu/common.h
new file mode 100644
index 0000000..f299f79
--- /dev/null
+++ b/plugins/gpu_neon/psx_gpu/common.h
@@ -0,0 +1,22 @@
+#ifndef COMMON_H
+#define COMMON_H
+
+typedef signed char s8;
+typedef unsigned char u8;
+typedef signed short s16;
+typedef unsigned short u16;
+typedef signed int s32;
+typedef unsigned int u32;
+typedef signed long long int s64;
+typedef unsigned long long int u64;
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/time.h>
+
+#include "vector_ops.h"
+#include "psx_gpu.h"
+
+#endif
+