From be691582ee12613278af24cb5a824eeb357f6324 Mon Sep 17 00:00:00 2001 From: Benji Dial Date: Mon, 29 Jul 2024 11:27:22 -0400 Subject: some work on compositor --- libraries/daguerre/include/daguerre/impl/fixed-font.hpp | 4 ++-- libraries/daguerre/include/daguerre/impl/image.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'libraries/daguerre') diff --git a/libraries/daguerre/include/daguerre/impl/fixed-font.hpp b/libraries/daguerre/include/daguerre/impl/fixed-font.hpp index dbff798..1a5f3d8 100644 --- a/libraries/daguerre/include/daguerre/impl/fixed-font.hpp +++ b/libraries/daguerre/include/daguerre/impl/fixed-font.hpp @@ -20,7 +20,7 @@ namespace daguerre { template fixed_font::fixed_font(fixed_font &&other) : glyph_width(other.glyph_width), glyph_height(other.glyph_height) { - for (int i = 0; 0 < 128; ++i) + for (int i = 0; i < 128; ++i) glyphs[i] = std::move(other.glyphs[i]); other.glyph_width = 0; other.glyph_height = 0; @@ -31,7 +31,7 @@ namespace daguerre { fixed_font &&other) { glyph_width = other.glyph_width; glyph_height = other.glyph_height; - for (int i = 0; 0 < 128; ++i) + for (int i = 0; i < 128; ++i) glyphs[i] = std::move(other.glyphs[i]); other.glyph_width = 0; other.glyph_height = 0; diff --git a/libraries/daguerre/include/daguerre/impl/image.hpp b/libraries/daguerre/include/daguerre/impl/image.hpp index 1264879..9160951 100644 --- a/libraries/daguerre/include/daguerre/impl/image.hpp +++ b/libraries/daguerre/include/daguerre/impl/image.hpp @@ -185,7 +185,7 @@ namespace daguerre { const param_t ¶m, const image &other, int to_x, int to_y, param_converter_t *conversion) { convert_from( - param, other, to_x, to_y, 0, 0, other.width, other.y, conversion); + param, other, to_x, to_y, 0, 0, other.width, other.height, conversion); } template -- cgit v1.2.3