mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-12 07:03:34 +00:00
working on text render pipeline
This commit is contained in:
@@ -29,6 +29,7 @@ namespace mlx
|
||||
{
|
||||
_textures_to_render.clear();
|
||||
_pixel_put_pipeline.clear();
|
||||
_text_put_pipeline.clear();
|
||||
}
|
||||
|
||||
void GraphicsSupport::pixelPut(int x, int y, int color) noexcept
|
||||
@@ -38,7 +39,7 @@ namespace mlx
|
||||
|
||||
void GraphicsSupport::stringPut(int x, int y, int color, std::string str)
|
||||
{
|
||||
_text_put_pipeline.put(x, y, color, str);
|
||||
_text_put_pipeline->put(x, y, color, str);
|
||||
}
|
||||
|
||||
void GraphicsSupport::texturePut(std::shared_ptr<Texture> texture, int x, int y)
|
||||
|
||||
Reference in New Issue
Block a user