diff options
Diffstat (limited to 'test/basic-putimage.c')
-rw-r--r-- | test/basic-putimage.c | 283 |
1 files changed, 283 insertions, 0 deletions
diff --git a/test/basic-putimage.c b/test/basic-putimage.c new file mode 100644 index 00000000..ce319764 --- /dev/null +++ b/test/basic-putimage.c @@ -0,0 +1,283 @@ +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> + +#include <X11/Xutil.h> /* for XDestroyImage */ +#include <pixman.h> /* for pixman blt functions */ + +#include "test.h" + +static void +show_cells(char *buf, + const uint32_t *real, const uint32_t *ref, + int x, int y, int w, int h) +{ + int i, j, len = 0; + + for (j = y - 2; j <= y + 2; j++) { + if (j < 0 || j >= h) + continue; + + for (i = x - 2; i <= x + 2; i++) { + if (i < 0 || i >= w) + continue; + + len += sprintf(buf+len, "%08x ", real[j*w+i]); + } + + len += sprintf(buf+len, "\t"); + + for (i = x - 2; i <= x + 2; i++) { + if (i < 0 || i >= w) + continue; + + len += sprintf(buf+len, "%08x ", ref[j*w+i]); + } + + len += sprintf(buf+len, "\n"); + } +} + +static void fill_rect(struct test_display *dpy, + Drawable d, XRenderPictFormat *format, + int use_shm, + uint8_t alu, int x, int y, int w, int h, uint32_t fg) +{ + XImage image; + XGCValues val; + GC gc; + + test_init_image(&image, &dpy->shm, format, w, h); + + pixman_fill((uint32_t*)image.data, + image.bytes_per_line/sizeof(uint32_t), + image.bits_per_pixel, + 0, 0, w, h, fg); + + val.function = alu; + gc = XCreateGC(dpy->dpy, d, GCFunction, &val); + if (use_shm) { + XShmPutImage(dpy->dpy, d, gc, &image, 0, 0, x, y, w, h, 0); + XSync(dpy->dpy, 1); + } else { + XPutImage(dpy->dpy, d, gc, &image, 0, 0, x, y, w, h); + } + XFreeGC(dpy->dpy, gc); +} + +static void pixel_tests(struct test *t, int reps, int sets, enum target target, int use_shm) +{ + struct test_target tt; + XImage image; + uint32_t *cells = malloc(t->real.width*t->real.height*4); + struct { + uint16_t x, y; + } *pixels = malloc(reps*sizeof(*pixels)); + int r, s; + + test_target_create_render(&t->real, target, &tt); + + printf("Testing setting of single pixels (%s %s shm): ", + test_target_name(target), use_shm ? "with" : "without" ); + fflush(stdout); + + for (s = 0; s < sets; s++) { + for (r = 0; r < reps; r++) { + int x = rand() % (tt.width - 1); + int y = rand() % (tt.height - 1); + int red = rand() % 0xff; + int green = rand() % 0xff; + int blue = rand() % 0xff; + int alpha = rand() % 0xff; + uint32_t fg = color(red, green, blue, alpha); + + fill_rect(&t->real, tt.draw, tt.format, use_shm, + GXcopy, x, y, 1, 1, fg); + + pixels[r].x = x; + pixels[r].y = y; + cells[y*tt.width+x] = fg; + } + + test_init_image(&image, &t->real.shm, tt.format, 1, 1); + + for (r = 0; r < reps; r++) { + uint32_t result; + uint32_t x = pixels[r].x; + uint32_t y = pixels[r].y; + + XShmGetImage(t->real.dpy, tt.draw, &image, + x, y, AllPlanes); + + result = *(uint32_t *)image.data; + if (!pixel_equal(image.depth, result, + cells[y*tt.width+x])) { + uint32_t mask; + + if (image.depth == 32) + mask = 0xffffffff; + else + mask = (1 << image.depth) - 1; + die("failed to set pixel (%d,%d) to %08x[%08x], found %08x instead\n", + x, y, + cells[y*tt.width+x] & mask, + cells[y*tt.width+x], + result & mask); + } + } + } + printf("passed [%d iterations x %d]\n", reps, sets); + + test_target_destroy_render(&t->real, &tt); + free(pixels); + free(cells); +} + +static void clear(struct test_display *dpy, struct test_target *tt) +{ + XRenderColor render_color = {0}; + XRenderFillRectangle(dpy->dpy, PictOpClear, tt->picture, &render_color, + 0, 0, tt->width, tt->height); +} + +static void area_tests(struct test *t, int reps, int sets, enum target target, int use_shm) +{ + struct test_target tt; + XImage image; + uint32_t *cells = calloc(sizeof(uint32_t), t->real.width*t->real.height); + int r, s, x, y; + + printf("Testing area sets (%s %s shm): ", + test_target_name(target), use_shm ? "with" : "without" ); + fflush(stdout); + + test_target_create_render(&t->real, target, &tt); + clear(&t->real, &tt); + + test_init_image(&image, &t->real.shm, tt.format, tt.width, tt.height); + + for (s = 0; s < sets; s++) { + for (r = 0; r < reps; r++) { + int red = rand() % 0xff; + int green = rand() % 0xff; + int blue = rand() % 0xff; + int alpha = rand() % 0xff; + uint32_t fg = color(red, green, blue, alpha); + int w, h; + + x = rand() % tt.width; + y = rand() % tt.height; + w = rand() % (tt.width - x); + h = rand() % (tt.height - y); + + fill_rect(&t->real, tt.draw, tt.format, use_shm, + GXcopy, x, y, w, h, fg); + + pixman_fill(cells, tt.width, 32, x, y, w, h, fg); + } + + XShmGetImage(t->real.dpy, tt.draw, &image, 0, 0, AllPlanes); + + for (y = 0; y < tt.height; y++) { + for (x = 0; x < tt.width; x++) { + uint32_t result = + *(uint32_t *)(image.data + + y*image.bytes_per_line + + image.bits_per_pixel*x/8); + if (!pixel_equal(image.depth, result, cells[y*tt.width+x])) { + uint32_t mask = depth_mask(image.depth); + char buf[600]; + + show_cells(buf, + (uint32_t*)image.data, cells, + x, y, tt.width, tt.height); + + die("failed to set pixel (%d,%d) to %08x[%08x], found %08x [%08x] instead\n%s", + x, y, + cells[y*tt.width+x] & mask, + cells[y*tt.width+x], + result & mask, result, + buf); + } + } + } + } + + printf("passed [%d iterations x %d]\n", reps, sets); + + test_target_destroy_render(&t->real, &tt); + free(cells); +} + +static void rect_tests(struct test *t, int reps, int sets, enum target target, int use_shm) +{ + struct test_target real, ref; + int r, s; + + printf("Testing area fills (%s): ", test_target_name(target)); + fflush(stdout); + + test_target_create_render(&t->real, target, &real); + clear(&t->real, &real); + + test_target_create_render(&t->ref, target, &ref); + clear(&t->ref, &ref); + + for (s = 0; s < sets; s++) { + for (r = 0; r < reps; r++) { + int x = rand() % real.width; + int y = rand() % real.height; + int w = rand() % (real.width - x); + int h = rand() % (real.height - y); + uint8_t alu = rand() % (GXset + 1); + int red = rand() % 0xff; + int green = rand() % 0xff; + int blue = rand() % 0xff; + int alpha = rand() % 0xff; + uint8_t fg = color(red, green, blue, alpha); + + fill_rect(&t->real, real.draw, real.format, use_shm, + alu, x, y, w, h, fg); + fill_rect(&t->ref, ref.draw, ref.format, use_shm, + alu, x, y, w, h, fg); + } + + test_compare(t, + real.draw, real.format, + ref.draw, ref.format, + 0, 0, real.width, real.height); + } + + printf("passed [%d iterations x %d]\n", reps, sets); + + test_target_destroy_render(&t->real, &real); + test_target_destroy_render(&t->ref, &ref); +} +int main(int argc, char **argv) +{ + struct test test; + int i; + + test_init(&test, argc, argv); + + for (i = 0; i <= DEFAULT_ITERATIONS; i++) { + int reps = 1 << i; + int sets = 1 << (12 - i); + enum target t; + + if (sets < 2) + sets = 2; + + for (t = TARGET_FIRST; t <= TARGET_LAST; t++) { + pixel_tests(&test, reps, sets, t, 0); + area_tests(&test, reps, sets, t, 0); + rect_tests(&test, reps, sets, t, 0); + + pixel_tests(&test, reps, sets, t, 1); + area_tests(&test, reps, sets, t, 1); + rect_tests(&test, reps, sets, t, 1); + } + } + + return 0; +} |