Package org.gnome.gsk
Class ColorMatrixNode
java.lang.Object
io.github.jwharm.javagi.base.ProxyInstance
org.gnome.gobject.TypeInstance
org.gnome.gsk.RenderNode
org.gnome.gsk.ColorMatrixNode
- All Implemented Interfaces:
Proxy
A render node controlling the color matrix of its single child node.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.gnome.gsk.RenderNode
RenderNode.RenderNodeImpl
-
Constructor Summary
ConstructorDescriptionColorMatrixNode
(MemorySegment address) Create a ColorMatrixNode proxy instance for the provided memory address.ColorMatrixNode
(RenderNode child, Matrix colorMatrix, Vec4 colorOffset) Creates aGskRenderNode
that will drawn thechild
withcolorMatrix
. -
Method Summary
Modifier and TypeMethodDescriptionprotected ColorMatrixNode
asParent()
Returns this instance as if it were its parent type.getChild()
Gets the child node that is getting its colors modified by the given this ColorMatrixNode.Retrieves the color matrix used by the this ColorMatrixNode.Retrieves the color offset used by the this ColorMatrixNode.static Type
getType()
Get the GType of the ColorMatrixNode classMethods inherited from class org.gnome.gsk.RenderNode
deserialize, draw, getBounds, getNodeType, getOpaqueRect, ref, serialize, unref, writeToFile
Methods inherited from class org.gnome.gobject.TypeInstance
callParent, callParent, getMemoryLayout, getPrivate, readGClass, writeGClass
Methods inherited from class io.github.jwharm.javagi.base.ProxyInstance
equals, handle, hashCode
-
Constructor Details
-
ColorMatrixNode
Create a ColorMatrixNode proxy instance for the provided memory address.- Parameters:
address
- the memory address of the native object
-
ColorMatrixNode
Creates aGskRenderNode
that will drawn thechild
withcolorMatrix
.In particular, the node will transform colors by applying
pixel = transpose(color_matrix) * pixel + color_offset
for every pixel. The transformation operates on unpremultiplied colors, with color components ordered R, G, B, A.
- Parameters:
child
- The node to drawcolorMatrix
- The matrix to applycolorOffset
- Values to add to the color
-
-
Method Details
-
getType
-
asParent
Returns this instance as if it were its parent type. This is mostly synonymous to the Javasuper
keyword, but will set the native typeclass function pointers to the parent type. When overriding a native virtual method in Java, "chaining up" withsuper.methodName()
doesn't work, because it invokes the overridden function pointer again. To chain up, callasParent().methodName()
. This will call the native function pointer of this virtual method in the typeclass of the parent type.- Overrides:
asParent
in classRenderNode
-
getChild
Gets the child node that is getting its colors modified by the given this ColorMatrixNode.- Returns:
- The child that is getting its colors modified
-
getColorMatrix
Retrieves the color matrix used by the this ColorMatrixNode.- Returns:
- a 4x4 color matrix
-
getColorOffset
Retrieves the color offset used by the this ColorMatrixNode.- Returns:
- a color vector
-