Basics
Guides
API Reference
Basics
Guides
API Reference
[38:7] extends: object
A facility to replay a [class@Gsk.RenderNode] and its children, potentially modifying them. This is a utility tool to walk a rendernode tree. The most powerful way is to provide a function via [method@Gsk.RenderReplay.set_node_filter] to filter each individual node and then run [method@Gsk.RenderReplay.filter_node] on the nodes you want to filter. If you want to just walk the node tree and extract information without any modifications, you can also use [method@Gsk.RenderNode.get_children]. Here is a little example application that redacts text in a node file: ``` #include <gtk/gtk.h> static GskRenderNode * redact_nodes (GskRenderReplay *replay, GskRenderNode *node, gpointer user_data) { GskRenderNode *result; if (gsk_render_node_get_node_type (node) == GSK_TEXT_NODE) { graphene_rect_t bounds; const GdkRGBA *color; gsk_render_node_get_bounds (node, &bounds); color = gsk_text_node_get_color (node); result = gsk_color_node_new (color, &bounds); } else { result = gsk_render_replay_default (replay, node); } return result; } int main (int argc, char *argv[]) { GFile *file; GBytes *bytes; GskRenderNode *result, *node; GskRenderReplay *replay; gtk_init (); if (argc != 3) { g_print ("usage: %s INFILE OUTFILE\n", argv[0]); return 0; } file = g_file_new_for_commandline_arg (argv[1]); bytes = g_file_load_bytes (file, NULL, NULL, NULL); g_object_unref (file); if (bytes == NULL) return 1; node = gsk_render_node_deserialize (bytes, NULL, NULL); g_bytes_unref (bytes); if (node == NULL) return 1; replay = gsk_render_replay_new (); gsk_render_replay_set_node_filter (replay, redact_nodes, NULL, NULL); result = gsk_render_replay_filter_node (replay, node); gsk_render_replay_free (replay); if (!gsk_render_node_write_to_file (result, argv[2], NULL)) return 1; gsk_render_node_unref (result); gsk_render_node_unref (node); return 0; }
#### Members
- **handleObj**
- **lib**
- **retainedCallbacks**
- **signalHandlerNames**
- **signalSetterHandlers**
#### Methods
- **RenderReplay** (`Handle = null`)
> Creates a new `RenderReplay` by wrapping a native handle or another wrapper.
- **@p** `Handle` is the native handle or another wrapper whose handle to adopt.
- **toNativeHandle** (`Source`)
> Normalizes a constructor argument into a raw pointer carrier. Accepts a raw NativeHandle, a raw NativeBuffer returned from `fn.call(...)`, another generated wrapper exposing `handle()`, or null. Returns null when the argument carries no pointer.
- **@p** `Source` is the raw handle, raw buffer, wrapper, or null.
- **@r** `A` raw pointer carrier or null when no pointer is present.
- **getLib** ()
> Returns the opened native library for this generated wrapper.
- **@r** `The` opened native library.
- **handle** ()
> Returns the wrapped NativeHandle.
- **@r** `The` wrapped NativeHandle.
- **isNull** ()
> Returns true when the wrapped handle is null.
- **@r** `A` bool.
- **describe** ()
> Returns a small string for debugging generated wrappers.
- **@r** `A` string.

Aussom
Write once. Embed everywhere.
Copyright 2026 Austin Lehman. All rights reserved.