/* 2325 */ if (this.canvasInfo.length < this.canvasCount) {
/* 2326 */ this.canvasInfo = new CanvasInfo[this.canvasCount];
/* */ }
/* */
/* 2329 */ for (int i = 0; i < this.canvasCount; i++) {
/* 2330 */ Canvas3D c3d = this.view.getCanvas3D(i);
/* 2331 */ Screen3D s3d = c3d.getScreen3D();
/* */
/* 2334 */ ScreenInfo si = (ScreenInfo)this.screenMap.get(s3d);
/* 2335 */ if (si == null) {
/* 2336 */ si = new ScreenInfo(s3d, c3d.getGraphicsConfiguration(), null);
/* 2337 */ this.screenMap.put(s3d, si);
/* */ }
/* */
/* 2343 */ if (this.newSet.add(si)) si.clear(this);
/* */