Creates a GskRenderNode
that draws a radial gradient.
The radial gradient
starts around center
. The size of the gradient is dictated by hradius
in horizontal orientation and by vradius
in vertial orientation.
the bounds of the node
the center of the gradient
the horizontal radius
the vertical radius
a percentage >= 0 that defines the start of the gradient around center
a percentage >= 0 that defines the end of the gradient around center
a pointer to an array of GskColorStop
defining the gradient. The offsets of all color stops must be increasing. The first stop's offset must be >= 0 and the last stop's offset must be <= 1.
Draw the contents of node
to the given cairo context.
Typically, you'll use this function to implement fallback rendering
of GskRenderNode
s on an intermediate Cairo context, instead of using
the drawing context associated to a [classGdk
.Surface]'s rendering buffer.
For advanced nodes that cannot be supported using Cairo, in particular for nodes doing 3D operations, this function may fail.
Retrieves the color stops in the gradient.
Retrieves the end value for the gradient.
Retrieves the horizonal radius for the gradient.
Retrieves the number of color stops in the gradient.
Returns the type of the node
.
Retrieves the start value for the gradient.
Retrieves the vertical radius for the gradient.
Acquires a reference on the given GskRenderNode
.
Serializes the node
for later deserialization via
gsk_render_node_deserialize(). No guarantees are made about the format
used other than that the same version of GTK will be able to deserialize
the result of a call to gsk_render_node_serialize() and
gsk_render_node_deserialize() will correctly reject files it cannot open
that were created with previous versions of GTK.
The intended use of this functions is testing, benchmarking and debugging. The format is not meant as a permanent storage format.
Releases a reference on the given GskRenderNode
.
If the reference was the last, the resources associated to the node
are
freed.
This function is equivalent to calling [methodGsk
.RenderNode.serialize]
followed by [funcGLib
.file_set_contents].
See those two functions for details on the arguments.
It is mostly intended for use inside a debugger to quickly dump a render node to a file for later inspection.
the file to save it to.
Loads data previously created via [methodGsk
.RenderNode.serialize].
For a discussion of the supported format, see that function.
the bytes containing the data
Creates a GskRenderNode
that draws a radial gradient.
The radial gradient
starts around center
. The size of the gradient is dictated by hradius
in horizontal orientation and by vradius
in vertial orientation.
the bounds of the node
the center of the gradient
the horizontal radius
the vertical radius
a percentage >= 0 that defines the start of the gradient around center
a percentage >= 0 that defines the end of the gradient around center
a pointer to an array of GskColorStop
defining the gradient. The offsets of all color stops must be increasing. The first stop's offset must be >= 0 and the last stop's offset must be <= 1.
A render node for a radial gradient.