/*
 * Copyright 2022-2023 MicroEJ Corp. All rights reserved.
 * This library is provided in source code for use, modification and test, subject to license terms.
 * Any modification of the source code will break MicroEJ Corp. warranties on the whole library.
 */
package com.microej.painter;

/* package */ class TransformedImagePainterNatives {

	private TransformedImagePainterNatives() {
		// private constructor
	}

	public static native void drawImage(byte[] target, byte[] source, int regionX, int regionY, int regionWidth,
			int regionHeight, int x, int y, float[] matrix, boolean bilinear, int alpha, int blend);
}
