Grx.fast_draw_pixel

function fast_draw_pixel(x: Number(gint), y: Number(gint), c: Grx.Color): void {
    // Gjs wrapper for grx_fast_draw_pixel()
}
  

Draw a single pixel on the current context at the specified coordinates.

This function does not perform clipping. If you are not sure x and y are within the bounds of the current context, use Grx.draw_pixel instead.

x

the X coordinate

y

the Y coordinate

c

the color (can include Grx.ColorMode)