mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-09 18:30:08 +00:00
c9c6b7bb2a
This command can be used to compare the rendering of a node to a reference image. It can also be used to compare the renderings of two nodes, or to compare two images.
12 lines
402 B
C
12 lines
402 B
C
|
|
#pragma once
|
|
|
|
void do_benchmark (int *argc, const char ***argv);
|
|
void do_compare (int *argc, const char ***argv);
|
|
void do_info (int *argc, const char ***argv);
|
|
void do_show (int *argc, const char ***argv);
|
|
void do_render (int *argc, const char ***argv);
|
|
|
|
GskRenderNode *load_node_file (const char *filename);
|
|
GskRenderer *create_renderer (const char *name, GError **error);
|