| 2 | |
| 3 | EDIT: |
| 4 | I suppose the unclipped FillRegion() call in here: http://xref.plausible.coop/source/xref/haiku/src/servers/app/View.cpp#1182 |
| 5 | is a possible candidate for the "out of bounds ViewColor" painting I sometimes see; enabling the commented-out debugger() call might be interesting. |
| 6 | |
| 7 | {{{ |
| 8 | if (fViewColor != B_TRANSPARENT_COLOR) { |
| 9 | // fill visible region with view color, |
| 10 | // this version of FillRegion ignores any |
| 11 | // clipping, that's why "redraw" needs to |
| 12 | // be correct |
| 13 | ... |
| 14 | drawingEngine->FillRegion(*redraw..... fViewColor) |
| 15 | }}} |