Skip to content
Snippets Groups Projects
Commit c8215298 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont Committed by Hugo Beauzée-Luyssen
Browse files

orient: remove redundant macro

parent 0255871c
No related branches found
No related tags found
1 merge request!1436orient: refactor for SIMD
......@@ -173,16 +173,14 @@ static void antitranspose(void *restrict dst, ptrdiff_t dst_stride,
typedef void (*transform_description_t)(void *, ptrdiff_t, const void *,
ptrdiff_t, int, int, int);
#define DESC(g) g
static const transform_description_t descriptions[] = {
[TRANSFORM_R90] = DESC(r90),
[TRANSFORM_R180] = DESC(r180),
[TRANSFORM_R270] = DESC(r270),
[TRANSFORM_HFLIP] = DESC(hflip),
[TRANSFORM_VFLIP] = DESC(vflip),
[TRANSFORM_TRANSPOSE] = DESC(transpose),
[TRANSFORM_ANTI_TRANSPOSE] = DESC(antitranspose),
[TRANSFORM_R90] = r90,
[TRANSFORM_R180] = r180,
[TRANSFORM_R270] = r270,
[TRANSFORM_HFLIP] = hflip,
[TRANSFORM_VFLIP] = vflip,
[TRANSFORM_TRANSPOSE] = transpose,
[TRANSFORM_ANTI_TRANSPOSE] = antitranspose,
};
typedef struct
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment