summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/os
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-02-03 12:57:49 +0000
committerJosé Fonseca <jfonseca@vmware.com>2010-02-03 12:57:49 +0000
commitb724694f3aed638466dc1de9ff8902aa392347a7 (patch)
tree2644bba4d3201754c06f5ee8624d635e0da89b58 /src/gallium/auxiliary/os
parent6b424a0550a5196818641857974f4cb04d61b933 (diff)
os: Also add the aligned memory prototypes to the embedded section.
Diffstat (limited to 'src/gallium/auxiliary/os')
-rw-r--r--src/gallium/auxiliary/os/os_memory.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/os/os_memory.h b/src/gallium/auxiliary/os/os_memory.h
index f18d5a3d9b..704aa0762b 100644
--- a/src/gallium/auxiliary/os/os_memory.h
+++ b/src/gallium/auxiliary/os/os_memory.h
@@ -57,6 +57,12 @@ os_free(void *ptr);
void *
os_realloc(void *ptr, size_t old_size, size_t new_size);
+void *
+os_malloc_aligned(size_t size, uint alignment);
+
+void
+os_free_aligned(void *ptr);
+
#ifdef __cplusplus
}
#endif