summaryrefslogtreecommitdiffstats
path: root/libass/ass_func_template.h
diff options
context:
space:
mode:
authorDr.Smile <vabnick@gmail.com>2021-03-16 12:55:02 +0300
committerDr.Smile <vabnick@gmail.com>2021-04-21 21:46:09 +0300
commit9474a9f2e4bc1045041632d32e6955a0d4569108 (patch)
tree5e539927822a897a175c8290db7ff4c8bf35f5fc /libass/ass_func_template.h
parent10160c4eddd3c1a4e340a193dde8f188c13d3a04 (diff)
downloadlibass-9474a9f2e4bc1045041632d32e6955a0d4569108.tar.bz2
libass-9474a9f2e4bc1045041632d32e6955a0d4569108.tar.xz
Make argument order uniform between bitmap functions
Diffstat (limited to 'libass/ass_func_template.h')
-rw-r--r--libass/ass_func_template.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libass/ass_func_template.h b/libass/ass_func_template.h
index 4c28777..f986295 100644
--- a/libass/ass_func_template.h
+++ b/libass/ass_func_template.h
@@ -33,17 +33,17 @@ void DECORATE(fill_generic_tile32)(uint8_t *buf, ptrdiff_t stride,
void DECORATE(add_bitmaps)(uint8_t *dst, intptr_t dst_stride,
uint8_t *src, intptr_t src_stride,
- intptr_t height, intptr_t width);
+ intptr_t width, intptr_t height);
void DECORATE(sub_bitmaps)(uint8_t *dst, intptr_t dst_stride,
uint8_t *src, intptr_t src_stride,
- intptr_t height, intptr_t width);
+ intptr_t width, intptr_t height);
void DECORATE(mul_bitmaps)(uint8_t *dst, intptr_t dst_stride,
uint8_t *src1, intptr_t src1_stride,
uint8_t *src2, intptr_t src2_stride,
intptr_t width, intptr_t height);
-void DECORATE(be_blur)(uint8_t *buf, intptr_t w, intptr_t h,
- intptr_t stride, uint16_t *tmp);
+void DECORATE(be_blur)(uint8_t *buf, intptr_t stride,
+ intptr_t width, intptr_t height, uint16_t *tmp);
void DECORATE(stripe_unpack)(int16_t *dst, const uint8_t *src, ptrdiff_t src_stride,
uintptr_t width, uintptr_t height);