working on text put pipeline

This commit is contained in:
Kbz-8
2023-04-06 17:26:19 +02:00
parent 66022c08fb
commit 8ae152e67a
12 changed files with 125 additions and 108 deletions

26
src/renderer/text_pipeline.cpp git.filemode.normal_file
View File

@@ -0,0 +1,26 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* text_pipeline.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/04/06 16:41:13 by maldavid #+# #+# */
/* Updated: 2023/04/06 16:42:10 by maldavid ### ########.fr */
/* */
/* ************************************************************************** */
#include <renderer/text_pipeline.h>
namespace mlx
{
void TextPutPipeline::init(Renderer& renderer) noexcept
{
}
void TextPutPipeline::put(int x, int y, int color, std::string str)
{
}
}