Home | History | Annotate | Download | only in texturepacker

Lines Matching refs:Mask

19 import com.badlogic.gdx.tools.texturepacker.ColorBleedEffect.Mask.MaskIterator;
41 Mask mask = new Mask(rgb);
45 while (mask.pendingSize > 0 && mask.pendingSize != lastPending && iterations < maxIterations) {
46 lastPending = mask.pendingSize;
47 executeIteration(rgb, mask, width, height);
55 private void executeIteration (int[] rgb, Mask mask, int width, int height) {
56 MaskIterator iterator = mask.new MaskIterator();
72 if (mask.getMask(currentPixelIndex) == REALDATA) {
95 static class Mask {
99 Mask (int[] rgb) {