Grx.fast_bit_blt

function fast_bit_blt(x: Number(gint), y: Number(gint), src: Grx.Context, x1: Number(gint), y1: Number(gint), x2: Number(gint), y2: Number(gint), op: Grx.Color): void {
    // Gjs wrapper for grx_fast_bit_blt()
}
  

Copies an area bounded by x1, y2, x2, y2 in the source context to the current context at the location specified by dx, dy using the specified operation.

This function does not perform clipping. If you cannot ensure that the destination rectangle is within the bounds of the context, then use Grx.bit_blt instead.

x

the destination X coordinate

y

the destination Y coordinate

src

the source context or null to use the current context

x1

the source bounding rectangle left coordinate

y1

the source bounding rectangle top coordinate

x2

the source bounding rectangle right coordinate

y2

the source bounding rectangle bottom coordinate

op

the Grx.ColorMode operator and optional transparent color