Copy-paste fix pattern
library CB-Render
fn main() {
init_window(960, 540, "Render")
clear(0x071018)
draw_rect(20, 20, 120, 60, 0x65EFE0)
swap_buffers_fast()
}
ClosedBit Docs
ClosedBit error docs
Render call shape error. A rendering function received invalid arguments or ran before the window was ready.
A rendering function received invalid arguments or ran before the window was ready.
Call init_window first and validate positions, sizes, colors, and font sizes.
library CB-Render
fn main() {
init_window(960, 540, "Render")
clear(0x071018)
draw_rect(20, 20, 120, 60, 0x65EFE0)
swap_buffers_fast()
}