diff options
author | Frederico Linhares <fred@linhares.blue> | 2025-07-14 15:00:52 -0300 |
---|---|---|
committer | Frederico Linhares <fred@linhares.blue> | 2025-07-14 15:00:52 -0300 |
commit | 0efc2fc6e7aeba281b2718157439f3e43c23d61a (patch) | |
tree | 80060f7ea35d80ce2e71240e029ee50e2f94c2bc /src/blu_cat/com | |
parent | 8bedf8a366cb6c1179bc89678c863517b9356d48 (diff) |
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.
Diffstat (limited to 'src/blu_cat/com')
-rw-r--r-- | src/blu_cat/com/binary_writer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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()} { } |