Changes between Initial Version and Version 1 of Ticket #6722, comment 13


Ignore:
Timestamp:
Mar 14, 2019, 5:22:44 PM (5 years ago)
Author:
ttcoder

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6722, comment 13

    initial v1  
    11(for me it also sometimes occurs even without changing workspace at all, just opening new windows, pretty much like in ticket:3615 which I've just discovered)
     2
     3EDIT:
     4I suppose the unclipped FillRegion() call in here: http://xref.plausible.coop/source/xref/haiku/src/servers/app/View.cpp#1182
     5is a possible candidate for the "out of bounds ViewColor" painting I sometimes see; enabling the commented-out debugger() call might be interesting.
     6
     7{{{
     8if (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}}}