Home | History | Annotate | Download | only in texturepacker

Lines Matching defs:rgba

265 	static private String splitError (int x, int y, int[] rgba, String name) {
266 throw new RuntimeException("Invalid " + name + " ninepatch split pixel at " + x + ", " + y + ", rgba: " + rgba[0] + ", "
267 + rgba[1] + ", " + rgba[2] + ", " + rgba[3]);
386 int[] rgba = new int[4];
400 raster.getPixel(x, y, rgba);
401 if (rgba[3] == breakA) return next;
403 if (!startPoint && (rgba[0] != 0 || rgba[1] != 0 || rgba[2] != 0 || rgba[3] != 255)) splitError(x, y, rgba, name);