I have been wondering, what is the strategy to handle gaps that can happen when drawing on Windows HI-DPI ?
Its like if I am drawing many rows for example like following where X is the fill color or picture:
XXXXXXXX
XXXXXXXX
XXXXXXXX
Then I sometimes battle that I get random Gaps between the rows on Windows HI-DPI, which I am assuming happens because Xojo draw API uses Integers but the Windows draw API under the hood uses float and we get some rounding issues when we are at strange DPI such as 175% ??
That just makes everything tiny since I am drawing off screen buffers in the Rows and not really just rectangles. Where the Off screen buffers are of course at same DPI as the base context.
(Probably also why the Xojo List box has not been fixed with such solution)