1 bit brush palette

Find quick help here to get you started with Hollywood
Post Reply
amyren
Posts: 387
Joined: Thu May 02, 2019 11:53 am

1 bit brush palette

Post by amyren »

I wonder what I do wrong here, I tried some variations but if I set the Depth to 1 it aways say the pixel is black.
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")
Post Reply