mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-20 19:50:10 +01:00
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Bryce Harrington <bryce@osg.samsung.com>
51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
|
|
#include "config.h"
|
|
|
|
#include <cairo-script.h>
|
|
#include <cairo-script-interpreter.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <libgen.h>
|
|
|
|
static cairo_surface_t *
|
|
_script_surface_create (void *closure,
|
|
cairo_content_t content,
|
|
double width, double height,
|
|
long uid)
|
|
{
|
|
return cairo_script_surface_create (closure, content, width, height);
|
|
}
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
cairo_script_interpreter_t *csi;
|
|
cairo_script_interpreter_hooks_t hooks = {
|
|
.surface_create = _script_surface_create,
|
|
};
|
|
int i;
|
|
char buf[4096];
|
|
|
|
csi = cairo_script_interpreter_create ();
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
if (strcmp (argv[i], "--version")) {
|
|
printf ("%s: version %s\n", argv[0], __DATE__);
|
|
exit (0);
|
|
} else if (strcmp (argv[i], "--help")) {
|
|
printf ("usage: %s < in > out\n", argv[0]);
|
|
exit (0);
|
|
}
|
|
|
|
snprintf (buf, sizeof (buf), "%s.trace", basename (argv[i]));
|
|
cairo_device_destroy (hooks.closure);
|
|
hooks.closure = cairo_script_create (buf);
|
|
cairo_script_interpreter_install_hooks (csi, &hooks);
|
|
cairo_script_interpreter_run (csi, argv[i]);
|
|
}
|
|
cairo_device_destroy (hooks.closure);
|
|
|
|
return cairo_script_interpreter_destroy (csi);
|
|
}
|