diff options
author | Mattias Andrée <maandree@kth.se> | 2023-01-27 21:31:32 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-01-27 21:31:41 +0100 |
commit | 51a7b0d48fa4539fcb8104afbcd8d010653ad428 (patch) | |
tree | ad588867c4682ef7b728cf180e0a76fcf06b246b /libglitter_compose_uint64.c | |
parent | Test libglitter_create_render_context and libglitter_update_render_context (diff) | |
download | libglitter-51a7b0d48fa4539fcb8104afbcd8d010653ad428.tar.gz libglitter-51a7b0d48fa4539fcb8104afbcd8d010653ad428.tar.bz2 libglitter-51a7b0d48fa4539fcb8104afbcd8d010653ad428.tar.xz |
Test libglitter_compose_{double,float,uint{64,32,16,8}}
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | libglitter_compose_uint64.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/libglitter_compose_uint64.c b/libglitter_compose_uint64.c index 6784055..323f10b 100644 --- a/libglitter_compose_uint64.c +++ b/libglitter_compose_uint64.c @@ -2,6 +2,7 @@ #include "common.h" #define ONLY_INT_COMPATIBLE #define double uint64_t +#define libglitter_compose_double libglitter_compose_uint64 #include "libglitter_compose_double.c" #ifdef greater_t # define MIX(A, B) (((greater_t)(A) + (greater_t)(B)) >> 1) @@ -93,14 +94,4 @@ libglitter_compose_uint64(uint64_t **outputs, const uint64_t *restrict input, si } -#else - - -int -main(void) -{ - return 0; /* TODO add test */ -} - - #endif |