diff options
author | Glenn Kennard <glenn.kennard@gmail.com> | 2005-10-03 19:36:34 +0200 |
---|---|---|
committer | Glenn Kennard <glenn.kennard@gmail.com> | 2005-10-03 19:36:34 +0200 |
commit | 3d58249f61401dc2a2957531fe278a575384fd3c (patch) | |
tree | 2eb3e5b89a835fed8cdcf14e66e3994a50628399 /apps/unix/ximage.c | |
parent | 2366ad7de028d397fbd6ed4d7a5d5d1b7915b6cf (diff) | |
download | mupdf-3d58249f61401dc2a2957531fe278a575384fd3c.tar.xz |
small optimizations
Optimize some common image code paths.
Diffstat (limited to 'apps/unix/ximage.c')
-rw-r--r-- | apps/unix/ximage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/unix/ximage.c b/apps/unix/ximage.c index 22e04a41..b37cf544 100644 --- a/apps/unix/ximage.c +++ b/apps/unix/ximage.c @@ -440,8 +440,8 @@ static void ximage_convert_argb8888(PARAMS) { int x, y; - unsigned *s = (unsigned *)src; - unsigned *d = (unsigned *)dst; + unsigned * restrict s = (unsigned * restrict )src; + unsigned * restrict d = (unsigned * restrict )dst; for (y = 0; y < h; y++) { for (x = 0; x < w; x++) { d[x] = s[x]; |