Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
4k views

Dirty Rectangles

Where may one find references on implementing an algorithm for calculating a "dirty rectangle" for minimizing frame buffer updates? A display model that permits arbitrary edits and computes the ...
6
votes
3answers
235 views

Optimum set of dirty rectangles

I'm looking for an algorithm here, independent of specific programming language. The problem: We have a 2-dimensional display area (think simple buffer of pixels). Periodically, some of the ...
4
votes
3answers
51 views

Is there a way to only mark a specific JPanel region as opaque?

Basically I'm drawing a lot of transparent JPanels; profiling shows that most time is spent in Component.paint(). It would be possible to optimize this quite radically since in most cases the real ...
0
votes
0answers
149 views

putImageData Dirty Rectangles in Firefox

I've found that this code: context.putImageData(data,0,0,20,20,50,50); (or similar, just the optional parameters of a dirty rectangle) doesn't work in Firefox (unless its version 4). So it appears ...
0
votes
0answers
226 views

Manage dirty rect efficiently

I am implementing a view system and I want to keep track of all the dirty rects. It seems my dirty rect management is a bottleneck for the whole system. On one hand, invalidating the bounding box of ...