From 0efc2fc6e7aeba281b2718157439f3e43c23d61a Mon Sep 17 00:00:00 2001 From: Frederico Linhares Date: Mon, 14 Jul 2025 15:00:52 -0300 Subject: fixt Improve graphics * src/blu_cat/gra/graphics_pipeline_2d_solid.cpp, src/blu_cat/gra/graphics_pipeline_2d_wired.cpp: remove redundant view port. * src/blu_cat/gra/renderer.cpp: Add view port to a more efficient place. Cleanup 2D images. --- src/blu_cat/com/binary_writer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/blu_cat/com/binary_writer.cpp') diff --git a/src/blu_cat/com/binary_writer.cpp b/src/blu_cat/com/binary_writer.cpp index 7af3b6d..fe06195 100644 --- a/src/blu_cat/com/binary_writer.cpp +++ b/src/blu_cat/com/binary_writer.cpp @@ -32,12 +32,12 @@ union IntAndFloat64bit{ } BinaryWriter::BinaryWriter(const char *file_path): - output{file_path, std::ios::binary} + output{file_path, std::ios::binary} { } BinaryWriter::BinaryWriter(const std::string &file_path): - BinaryWriter{file_path.c_str()} + BinaryWriter{file_path.c_str()} { } -- cgit v1.2.3