fixing color bug

This commit is contained in:
2023-04-19 11:51:13 +02:00
parent c497645ee9
commit e7d65a297e
9 changed files with 31 additions and 20 deletions

View File

@@ -32,7 +32,7 @@ namespace mlx
_text_put_pipeline->clear();
}
void GraphicsSupport::pixelPut(int x, int y, int color) noexcept
void GraphicsSupport::pixelPut(int x, int y, uint32_t color) noexcept
{
_pixel_put_pipeline.setPixel(x, y, color);
}