diff --git a/src/builtins/transpose.c b/src/builtins/transpose.c index 0bd23027..4e1f9985 100644 --- a/src/builtins/transpose.c +++ b/src/builtins/transpose.c @@ -32,32 +32,33 @@ #endif #endif -#define TRANSPOSE_LOOP( DST, SRC, W, H) PLAINLOOP for(usz y=0,xi=0;y< H;y++) NOVECTORIZE for(usz x=0;x< W;x++) DST[x*H+y] = SRC[xi++] -#define TRANSPOSE_BLOCK(DST, SRC, BW, BH, W, H) PLAINLOOP for(usz y=0 ;y