// Puts a pixel to the currently active bitmap func PutPixel(x, y int, color Color) { C.al_put_pixel(C.int(x), C.int(y), color.toC()) }
func (c Color) PutPixel(x, y int) { C.al_put_pixel(C.int(x), C.int(y), (C.ALLEGRO_COLOR)(c)) }
func PutPixel(x, y int32, c *Color) { C.al_put_pixel(C.int(x), C.int(y), (C.ALLEGRO_COLOR)(*c)) }