}
}
private void testWithResolution(int x, int y) {
MatrixData matrix = new MatrixData(x,y);
PixelControllerMixer pcm = new PixelControllerMixer(matrix, sound);
pcm.initAll();
Generator g = new PassThruGen(matrix);
Effect e = new PassThru(matrix);
Mixer m = new Checkbox(matrix);
ColorSet c = new ColorSet("test", new int[]{1,2,3});
Visual v = new Visual(g,e,m,c);
for (Mixer mix: pcm.getAllMixer()) {
//System.out.println(mix);
mix.getBuffer(v);
}
}