diff options
author | Carl Worth <cworth@cworth.org> | 2006-10-04 13:23:50 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2006-10-04 17:14:11 -0700 |
commit | d0aae4dbcf6d3ca67a4a7b364fba80f719af2ac1 (patch) | |
tree | 33bab8ed3acfde204aa9dd1fee9a418aa5130fe6 /perf/cairo-perf.c | |
parent | 4406ab1b9e8a618aae4d709a370d4ace0e9897e9 (diff) | |
download | cairo-d0aae4dbcf6d3ca67a4a7b364fba80f719af2ac1.tar.gz |
perf: Make cairo_t* available to perf functions
Diffstat (limited to 'perf/cairo-perf.c')
-rw-r--r-- | perf/cairo-perf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perf/cairo-perf.c b/perf/cairo-perf.c index b2768c3f9..e786ab722 100644 --- a/perf/cairo-perf.c +++ b/perf/cairo-perf.c @@ -223,7 +223,7 @@ main (int argc, char *argv[]) target->closure); perf.cr = cairo_create (surface); - perf_case->run (&perf); + perf_case->run (&perf, perf.cr, perf.size, perf.size); cairo_surface_destroy (surface); } |