mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
20d1bc2ccc
When printing, behave the same way as when parsing: Magically skip a container node if there is one - just like the parser magically creates a container node to hold all the nodes it parses.
12 lines
387 B
C
12 lines
387 B
C
|
|
#ifndef __GSK_RENDER_NODE_PARSER_PRIVATE_H__
|
|
#define __GSK_RENDER_NODE_PARSER_PRIVATE_H__
|
|
|
|
#include "gskrendernode.h"
|
|
|
|
GskRenderNode * gsk_render_node_deserialize_from_bytes (GBytes *bytes,
|
|
GskParseErrorFunc error_func,
|
|
gpointer user_data);
|
|
|
|
#endif
|