summaryrefslogtreecommitdiff
path: root/liboil/liboiltypes.h
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2005-12-18 04:54:53 +0000
committerDavid Schleef <ds@schleef.org>2005-12-18 04:54:53 +0000
commit4c5004c8d6912b15bb0330ad1d32945c99167909 (patch)
tree813bb656802c074196f913af724dafe9f6ee5965 /liboil/liboiltypes.h
parent33803e9ed18fe538d0a568401703666d6204e27e (diff)
downloadliboil-4c5004c8d6912b15bb0330ad1d32945c99167909.tar.gz
* liboil/Makefile.am: Add librandom.c
* liboil/liboilcolorspace.h: * liboil/liboilrandom.c: Some C code to write arrays of random numbers. * liboil/liboilrandom.h: Add prototypes from above, remove a bunch of macros that aren't used. * liboil/liboiltest.c: Use array functions instead of macros. * liboil/liboiltest.h: Add oil_test_get_source_data() * liboil/liboiltypes.h: Add 64-bit types. * liboil/i386/composite_i386.c: Add simple mmx implementations for all the composite functions.
Diffstat (limited to 'liboil/liboiltypes.h')
-rw-r--r--liboil/liboiltypes.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/liboil/liboiltypes.h b/liboil/liboiltypes.h
index f6c4314..2d6f8a1 100644
--- a/liboil/liboiltypes.h
+++ b/liboil/liboiltypes.h
@@ -88,6 +88,18 @@ typedef void (*OilTestFunction) (OilTest *test);
*/
#define oil_type_u32 uint32_t
/**
+ * oil_type_s64:
+ *
+ * Useful for autogenerated code. Do not use otherwise.
+ */
+#define oil_type_s64 int64_t
+/**
+ * oil_type_u64:
+ *
+ * Useful for autogenerated code. Do not use otherwise.
+ */
+#define oil_type_u64 uint64_t
+/**
* oil_type_f32:
*
* Useful for autogenerated code. Do not use otherwise.