[cp-patches] FYI: RepaintManager fixlet

2006-07-26 Thread Roman Kennke
This fixes a Mauve tests. Besides that it hasn't much impact as these methods aren't used in Swing itself. 2006-07-26 Roman Kennke [EMAIL PROTECTED] * javax/swing/RepaintManager.java (markCompletelyDirty): Add dirty region with Integer.MAX_VALUE for the component.

[cp-patches] FYI: RepaintManager fixlet

2006-06-15 Thread Roman Kennke
This fixes a thinko of mine. 2006-06-15 Roman Kennke [EMAIL PROTECTED] PR 28037 * javax/swing/RepaintManager.java (blitBuffer): Substract coordinates the other way around. /Roman -- “Improvement makes straight roads, but the crooked roads, without Improvement, are

[cp-patches] FYI: RepaintManager fixlet

2006-03-27 Thread Roman Kennke
In the RepaintManager we are using the Graphics.drawImage() method, that takes 11 parameters to paint a part of the buffer to a part of the screen. Looking at the native code this seems rather inefficient (there are 1-2 temporary images created there, a scaling is performed etc, which is all

[cp-patches] FYI: RepaintManager fixlet

2006-02-22 Thread Roman Kennke
In RepaintManager.addInvalidComponent we should really also consider the component itself and ask if it is a validateRoot. Up to now we started with the component's parent. 2006-02-22 Roman Kennke [EMAIL PROTECTED] * javax/swing/RepaintManager.java (addInvalidComponent): Also