If I skip the Depth argument and create a full color brush it will be white.
Code: Select all
CreatePalette(1, {#PALETTE_MONOCHROME}, {Depth = 1})
visited = CreateBrush(Nil, 1280, 720, #WHITE, {Depth = 1, Palette = 1})
If ReadBrushPixel(visited, 1, 1) = #BLACK Then DebugPrint("Pixel is black")
If ReadBrushPixel(visited, 1, 1) = #WHITE Then DebugPrint("Pixel is white")