2020-06-01 12:56:23 +02:00
|
|
|
#include "font_renderer.h"
|
|
|
|
|
2020-06-04 16:29:28 +02:00
|
|
|
#include "agg_lcd_distribution_lut.h"
|
2020-06-02 14:47:06 +02:00
|
|
|
#include "agg_pixfmt_rgb.h"
|
|
|
|
#include "agg_pixfmt_rgba.h"
|
|
|
|
|
2020-06-01 12:56:23 +02:00
|
|
|
#include "font_renderer_alpha.h"
|
|
|
|
|
2020-06-11 17:52:00 +02:00
|
|
|
// Important: when a subpixel scale is used the width below will be the width in logical pixel.
|
|
|
|
// As each logical pixel contains 3 subpixels it means that the 'pixels' pointer
|
|
|
|
// will hold enough space for '3 * width' uint8_t values.
|
2020-06-11 18:12:47 +02:00
|
|
|
struct FR_Bitmap {
|
2020-06-11 17:52:00 +02:00
|
|
|
agg::int8u *pixels;
|
|
|
|
int width, height;
|
|
|
|
};
|
|
|
|
|
2020-06-29 17:01:14 +02:00
|
|
|
class FR_Renderer {
|
2020-06-02 17:18:52 +02:00
|
|
|
public:
|
2020-06-04 16:29:28 +02:00
|
|
|
// Conventional LUT values: (1./3., 2./9., 1./9.)
|
|
|
|
// The values below are fine tuned as in the Elementary Plot library.
|
|
|
|
|
2020-06-29 17:01:14 +02:00
|
|
|
FR_Renderer(bool hinting, bool kerning, bool subpixel, bool prescale_x) :
|
2020-06-12 16:06:39 +02:00
|
|
|
m_renderer(hinting, kerning, subpixel, prescale_x),
|
2020-06-11 23:11:40 +02:00
|
|
|
m_lcd_lut(0.448, 0.184, 0.092),
|
|
|
|
m_subpixel(subpixel)
|
|
|
|
{ }
|
2020-06-02 17:18:52 +02:00
|
|
|
|
|
|
|
font_renderer_alpha& renderer_alpha() { return m_renderer; }
|
2020-06-04 16:29:28 +02:00
|
|
|
agg::lcd_distribution_lut& lcd_distribution_lut() { return m_lcd_lut; }
|
2020-06-11 23:11:40 +02:00
|
|
|
int subpixel_scale() const { return (m_subpixel ? 3 : 1); }
|
2020-06-02 17:18:52 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
font_renderer_alpha m_renderer;
|
2020-06-04 16:29:28 +02:00
|
|
|
agg::lcd_distribution_lut m_lcd_lut;
|
2020-06-11 23:11:40 +02:00
|
|
|
int m_subpixel;
|
2020-06-02 17:18:52 +02:00
|
|
|
};
|
|
|
|
|
2020-06-16 14:43:03 +02:00
|
|
|
FR_Renderer *FR_Renderer_New(unsigned int flags) {
|
2020-06-12 16:06:39 +02:00
|
|
|
bool hinting = ((flags & FR_HINTING) != 0);
|
|
|
|
bool kerning = ((flags & FR_KERNING) != 0);
|
|
|
|
bool subpixel = ((flags & FR_SUBPIXEL) != 0);
|
|
|
|
bool prescale_x = ((flags & FR_PRESCALE_X) != 0);
|
2020-06-29 17:01:14 +02:00
|
|
|
return new FR_Renderer(hinting, kerning, subpixel, prescale_x);
|
2020-06-01 12:56:23 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 23:19:08 +02:00
|
|
|
FR_Bitmap* FR_Bitmap_New(FR_Renderer *font_renderer, int width, int height) {
|
2020-06-11 23:11:40 +02:00
|
|
|
const int subpixel_scale = font_renderer->subpixel_scale();
|
|
|
|
FR_Bitmap *image = (FR_Bitmap *) malloc(sizeof(FR_Bitmap) + width * height * subpixel_scale);
|
|
|
|
if (!image) { return NULL; }
|
|
|
|
image->pixels = (agg::int8u *) (image + 1);
|
|
|
|
image->width = width;
|
|
|
|
image->height = height;
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FR_Bitmap_Free(FR_Bitmap *image) {
|
|
|
|
free(image);
|
|
|
|
}
|
|
|
|
|
2020-06-11 23:19:08 +02:00
|
|
|
void FR_Renderer_Free(FR_Renderer *font_renderer) {
|
2020-06-04 16:46:37 +02:00
|
|
|
delete font_renderer;
|
2020-06-01 14:42:57 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 23:19:08 +02:00
|
|
|
int FR_Load_Font(FR_Renderer *font_renderer, const char *filename) {
|
2020-06-02 17:18:52 +02:00
|
|
|
bool success = font_renderer->renderer_alpha().load_font(filename);
|
2020-06-01 12:56:23 +02:00
|
|
|
return (success ? 0 : 1);
|
|
|
|
}
|
|
|
|
|
2020-06-11 23:19:08 +02:00
|
|
|
int FR_Get_Font_Height(FR_Renderer *font_renderer, float size) {
|
2020-06-02 17:18:52 +02:00
|
|
|
font_renderer_alpha& renderer_alpha = font_renderer->renderer_alpha();
|
2020-06-01 12:56:23 +02:00
|
|
|
double ascender, descender;
|
2020-06-02 17:18:52 +02:00
|
|
|
renderer_alpha.get_font_vmetrics(ascender, descender);
|
|
|
|
int face_height = renderer_alpha.get_face_height();
|
|
|
|
float scale = renderer_alpha.scale_for_em_to_pixels(size);
|
2020-06-01 12:56:23 +02:00
|
|
|
return int((ascender - descender) * face_height * scale + 0.5);
|
|
|
|
}
|
|
|
|
|
2020-06-11 18:12:47 +02:00
|
|
|
static void glyph_trim_rect(agg::rendering_buffer& ren_buf, FR_Bitmap_Glyph_Metrics& gli, int subpixel_scale) {
|
2020-06-02 18:46:44 +02:00
|
|
|
const int height = ren_buf.height();
|
2020-06-05 15:27:55 +02:00
|
|
|
int x0 = gli.x0 * subpixel_scale, x1 = gli.x1 * subpixel_scale;
|
|
|
|
int y0 = gli.y0, y1 = gli.y1;
|
|
|
|
for (int y = gli.y0; y < gli.y1; y++) {
|
2020-06-06 14:58:19 +02:00
|
|
|
const uint8_t *row = ren_buf.row_ptr(height - 1 - y);
|
2020-06-02 18:46:44 +02:00
|
|
|
unsigned int row_bitsum = 0;
|
|
|
|
for (int x = x0; x < x1; x++) {
|
|
|
|
row_bitsum |= row[x];
|
|
|
|
}
|
|
|
|
if (row_bitsum == 0) {
|
|
|
|
y0++;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-06-05 15:27:55 +02:00
|
|
|
for (int y = gli.y1 - 1; y >= y0; y--) {
|
2020-06-06 14:58:19 +02:00
|
|
|
const uint8_t *row = ren_buf.row_ptr(height - 1 - y);
|
2020-06-02 18:46:44 +02:00
|
|
|
unsigned int row_bitsum = 0;
|
|
|
|
for (int x = x0; x < x1; x++) {
|
|
|
|
row_bitsum |= row[x];
|
|
|
|
}
|
|
|
|
if (row_bitsum == 0) {
|
|
|
|
y1--;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-06-05 15:27:55 +02:00
|
|
|
for (int x = gli.x0 * subpixel_scale; x < gli.x1 * subpixel_scale; x += subpixel_scale) {
|
2020-06-04 17:08:55 +02:00
|
|
|
unsigned int xaccu = 0;
|
|
|
|
for (int y = y0; y < y1; y++) {
|
2020-06-06 14:58:19 +02:00
|
|
|
const uint8_t *row = ren_buf.row_ptr(height - 1 - y);
|
2020-06-04 16:29:28 +02:00
|
|
|
for (int i = 0; i < subpixel_scale; i++) {
|
|
|
|
xaccu |= row[x + i];
|
|
|
|
}
|
2020-06-02 18:46:44 +02:00
|
|
|
}
|
2020-06-04 17:08:55 +02:00
|
|
|
if (xaccu == 0) {
|
|
|
|
x0 += subpixel_scale;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-06-05 15:27:55 +02:00
|
|
|
for (int x = (gli.x1 - 1) * subpixel_scale; x >= x0; x -= subpixel_scale) {
|
2020-06-04 17:08:55 +02:00
|
|
|
unsigned int xaccu = 0;
|
|
|
|
for (int y = y0; y < y1; y++) {
|
2020-06-06 14:58:19 +02:00
|
|
|
const uint8_t *row = ren_buf.row_ptr(height - 1 - y);
|
2020-06-04 16:29:28 +02:00
|
|
|
for (int i = 0; i < subpixel_scale; i++) {
|
|
|
|
xaccu |= row[x + i];
|
|
|
|
}
|
2020-06-04 17:08:55 +02:00
|
|
|
}
|
|
|
|
if (xaccu == 0) {
|
|
|
|
x1 -= subpixel_scale;
|
|
|
|
} else {
|
|
|
|
break;
|
2020-06-02 18:46:44 +02:00
|
|
|
}
|
|
|
|
}
|
2020-06-05 15:27:55 +02:00
|
|
|
gli.xoff += (x0 / subpixel_scale) - gli.x0;
|
|
|
|
gli.yoff += (y0 - gli.y0);
|
|
|
|
gli.x0 = x0 / subpixel_scale;
|
|
|
|
gli.y0 = y0;
|
|
|
|
gli.x1 = x1 / subpixel_scale;
|
|
|
|
gli.y1 = y1;
|
|
|
|
}
|
|
|
|
|
2020-06-11 18:12:47 +02:00
|
|
|
static void glyph_lut_convolution(agg::rendering_buffer ren_buf, agg::lcd_distribution_lut& lcd_lut, agg::int8u *covers_buf, FR_Bitmap_Glyph_Metrics& gli) {
|
2020-06-05 15:27:55 +02:00
|
|
|
const int subpixel = 3;
|
|
|
|
const int x0 = gli.x0, y0 = gli.y0, x1 = gli.x1, y1 = gli.y1;
|
|
|
|
const int len = (x1 - x0) * subpixel;
|
|
|
|
const int height = ren_buf.height();
|
|
|
|
for (int y = y0; y < y1; y++) {
|
2020-06-06 10:52:50 +02:00
|
|
|
agg::int8u *covers = ren_buf.row_ptr(height - 1 - y) + x0 * subpixel;
|
2020-06-05 17:36:08 +02:00
|
|
|
memcpy(covers_buf, covers, len);
|
2020-06-05 15:27:55 +02:00
|
|
|
for (int x = x0 - 1; x < x1 + 1; x++) {
|
|
|
|
for (int i = 0; i < subpixel; i++) {
|
|
|
|
const int cx = (x - x0) * subpixel + i;
|
2020-06-06 14:53:44 +02:00
|
|
|
covers[cx] = lcd_lut.convolution(covers_buf, cx, 0, len - 1);
|
2020-06-05 15:27:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-05 17:32:36 +02:00
|
|
|
gli.x0 -= 1;
|
|
|
|
gli.x1 += 1;
|
|
|
|
gli.xoff -= 1;
|
2020-06-02 18:46:44 +02:00
|
|
|
}
|
|
|
|
|
2020-06-04 16:29:28 +02:00
|
|
|
static int ceil_to_multiple(int n, int p) {
|
|
|
|
return p * ((n + p - 1) / p);
|
|
|
|
}
|
|
|
|
|
2020-06-11 23:19:08 +02:00
|
|
|
int FR_Bake_Font_Bitmap(FR_Renderer *font_renderer, int font_height,
|
2020-06-11 18:12:47 +02:00
|
|
|
FR_Bitmap *image,
|
2020-06-11 23:11:40 +02:00
|
|
|
int first_char, int num_chars, FR_Bitmap_Glyph_Metrics *glyphs)
|
2020-06-01 12:56:23 +02:00
|
|
|
{
|
2020-06-02 17:18:52 +02:00
|
|
|
font_renderer_alpha& renderer_alpha = font_renderer->renderer_alpha();
|
2020-06-11 23:11:40 +02:00
|
|
|
agg::lcd_distribution_lut& lcd_lut = font_renderer->lcd_distribution_lut();
|
|
|
|
const int subpixel_scale = font_renderer->subpixel_scale();
|
2020-06-01 12:56:23 +02:00
|
|
|
|
2020-06-11 17:52:00 +02:00
|
|
|
agg::int8u *pixels = image->pixels;
|
|
|
|
const int pixels_width = image->width, pixels_height = image->height;
|
|
|
|
|
2020-06-01 12:56:23 +02:00
|
|
|
const int pixel_size = 1;
|
2020-06-04 16:29:28 +02:00
|
|
|
memset(pixels, 0x00, pixels_width * pixels_height * subpixel_scale * pixel_size);
|
2020-06-01 12:56:23 +02:00
|
|
|
|
|
|
|
double ascender, descender;
|
2020-06-02 17:18:52 +02:00
|
|
|
renderer_alpha.get_font_vmetrics(ascender, descender);
|
2020-06-01 12:56:23 +02:00
|
|
|
|
2020-06-07 00:14:41 +02:00
|
|
|
const int ascender_px = int(ascender * font_height);
|
|
|
|
const int descender_px = ascender_px - font_height;
|
2020-06-01 12:56:23 +02:00
|
|
|
|
2020-06-04 16:29:28 +02:00
|
|
|
const int pad_y = font_height / 10;
|
2020-06-07 00:14:41 +02:00
|
|
|
const int y_step = font_height + 2 * pad_y;
|
2020-06-01 12:56:23 +02:00
|
|
|
|
2020-06-11 17:52:00 +02:00
|
|
|
agg::rendering_buffer ren_buf(pixels, pixels_width * subpixel_scale, pixels_height, -pixels_width * subpixel_scale * pixel_size);
|
2020-06-04 17:17:10 +02:00
|
|
|
// When using subpixel font rendering it is needed to leave a padding pixel on the left and on the right.
|
|
|
|
// Since each pixel is composed by n subpixel we set below x_start to subpixel_scale instead than zero.
|
2020-06-04 16:29:28 +02:00
|
|
|
const int x_start = subpixel_scale;
|
2020-06-06 13:08:39 +02:00
|
|
|
int x = x_start, y = pixels_height - 1;
|
2020-06-01 12:56:23 +02:00
|
|
|
int res = 0;
|
|
|
|
const agg::alpha8 text_color(0xff);
|
2020-06-01 17:23:18 +02:00
|
|
|
#ifdef FONT_RENDERER_HEIGHT_HACK
|
2020-06-01 15:33:14 +02:00
|
|
|
const int font_height_reduced = (font_height * 86) / 100;
|
2020-06-01 17:23:18 +02:00
|
|
|
#else
|
|
|
|
const int font_height_reduced = font_height;
|
|
|
|
#endif
|
2020-06-06 19:05:45 +02:00
|
|
|
renderer_alpha.set_font_height(font_height_reduced);
|
2020-06-06 13:08:39 +02:00
|
|
|
agg::int8u *cover_swap_buffer = new agg::int8u[pixels_width * subpixel_scale];
|
2020-06-01 12:56:23 +02:00
|
|
|
for (int i = 0; i < num_chars; i++) {
|
|
|
|
int codepoint = first_char + i;
|
2020-06-04 16:29:28 +02:00
|
|
|
if (x + font_height * subpixel_scale > pixels_width * subpixel_scale) {
|
|
|
|
x = x_start;
|
2020-06-01 12:56:23 +02:00
|
|
|
y -= y_step;
|
|
|
|
}
|
2020-06-06 10:52:50 +02:00
|
|
|
if (y - y_step < 0) {
|
2020-06-01 12:56:23 +02:00
|
|
|
res = -1;
|
|
|
|
break;
|
|
|
|
}
|
2020-06-06 10:52:50 +02:00
|
|
|
const int y_baseline = y - pad_y - ascender_px;
|
2020-06-01 12:56:23 +02:00
|
|
|
|
|
|
|
double x_next = x, y_next = y_baseline;
|
2020-06-06 19:05:45 +02:00
|
|
|
renderer_alpha.render_codepoint(ren_buf, text_color, x_next, y_next, codepoint, subpixel_scale);
|
2020-06-04 16:29:28 +02:00
|
|
|
int x_next_i = (subpixel_scale == 1 ? int(x_next + 1.0) : ceil_to_multiple(x_next + 0.5, subpixel_scale));
|
2020-06-01 14:45:07 +02:00
|
|
|
|
2020-06-05 15:27:55 +02:00
|
|
|
// Below x and x_next_i will always be integer multiples of subpixel_scale.
|
2020-06-11 18:12:47 +02:00
|
|
|
FR_Bitmap_Glyph_Metrics& glyph_info = glyphs[i];
|
2020-06-04 16:29:28 +02:00
|
|
|
glyph_info.x0 = x / subpixel_scale;
|
2020-06-06 10:52:50 +02:00
|
|
|
glyph_info.y0 = pixels_height - 1 - (y_baseline + ascender_px + pad_y); // FIXME: add -1 ?
|
2020-06-04 16:29:28 +02:00
|
|
|
glyph_info.x1 = x_next_i / subpixel_scale;
|
2020-06-06 10:52:50 +02:00
|
|
|
glyph_info.y1 = pixels_height - 1 - (y_baseline + descender_px - pad_y); // FIXME: add -1 ?
|
2020-06-02 18:46:44 +02:00
|
|
|
|
2020-06-01 12:56:23 +02:00
|
|
|
glyph_info.xoff = 0;
|
2020-06-01 14:33:46 +02:00
|
|
|
glyph_info.yoff = -pad_y;
|
2020-06-04 16:29:28 +02:00
|
|
|
glyph_info.xadvance = (x_next - x) / subpixel_scale;
|
2020-06-01 14:45:07 +02:00
|
|
|
|
2020-06-11 23:11:40 +02:00
|
|
|
if (subpixel_scale != 1 && glyph_info.x1 > glyph_info.x0) {
|
2020-06-06 13:08:39 +02:00
|
|
|
glyph_lut_convolution(ren_buf, lcd_lut, cover_swap_buffer, glyph_info);
|
2020-06-05 17:32:36 +02:00
|
|
|
}
|
2020-06-06 13:08:39 +02:00
|
|
|
glyph_trim_rect(ren_buf, glyph_info, subpixel_scale);
|
2020-06-02 18:46:44 +02:00
|
|
|
|
2020-06-06 13:08:39 +02:00
|
|
|
// When subpixel is activated we need one padding pixel on the left and on the right.
|
2020-06-05 17:32:36 +02:00
|
|
|
x = x_next_i + 2 * subpixel_scale;
|
2020-06-01 12:56:23 +02:00
|
|
|
}
|
2020-06-06 13:08:39 +02:00
|
|
|
delete [] cover_swap_buffer;
|
2020-06-01 12:56:23 +02:00
|
|
|
return res;
|
|
|
|
}
|
2020-06-02 14:47:06 +02:00
|
|
|
|
2020-06-11 23:11:40 +02:00
|
|
|
template <typename Order>
|
2020-06-16 14:43:03 +02:00
|
|
|
void blend_solid_hspan(agg::rendering_buffer& rbuf, int x, int y, unsigned len,
|
2020-06-04 16:46:37 +02:00
|
|
|
const agg::rgba8& c, const agg::int8u* covers)
|
2020-06-02 14:47:06 +02:00
|
|
|
{
|
2020-06-11 23:11:40 +02:00
|
|
|
const int pixel_size = 4;
|
|
|
|
agg::int8u* p = rbuf.row_ptr(y) + x * pixel_size;
|
|
|
|
do
|
2020-06-02 14:47:06 +02:00
|
|
|
{
|
2020-06-11 23:11:40 +02:00
|
|
|
const unsigned alpha = *covers;
|
2020-06-16 14:43:03 +02:00
|
|
|
const unsigned r = p[Order::R], g = p[Order::G], b = p[Order::B];
|
|
|
|
p[Order::R] = (((unsigned(c.r) - r) * alpha) >> 8) + r;
|
|
|
|
p[Order::G] = (((unsigned(c.g) - g) * alpha) >> 8) + g;
|
|
|
|
p[Order::B] = (((unsigned(c.b) - b) * alpha) >> 8) + b;
|
2020-06-11 23:11:40 +02:00
|
|
|
// Leave p[3], the alpha channel value unmodified.
|
|
|
|
p += 4;
|
|
|
|
++covers;
|
2020-06-02 14:47:06 +02:00
|
|
|
}
|
2020-06-11 23:11:40 +02:00
|
|
|
while(--len);
|
2020-06-02 14:47:06 +02:00
|
|
|
}
|
2020-06-05 17:32:36 +02:00
|
|
|
|
2020-06-11 23:11:40 +02:00
|
|
|
template <typename Order>
|
2020-06-16 14:43:03 +02:00
|
|
|
void blend_solid_hspan_subpixel(agg::rendering_buffer& rbuf, agg::lcd_distribution_lut& lcd_lut,
|
2020-06-08 09:32:39 +02:00
|
|
|
const int x, const int y, unsigned len,
|
2020-06-04 16:29:28 +02:00
|
|
|
const agg::rgba8& c,
|
|
|
|
const agg::int8u* covers)
|
|
|
|
{
|
2020-06-04 17:17:10 +02:00
|
|
|
const int pixel_size = 4;
|
2020-06-16 14:43:03 +02:00
|
|
|
const unsigned rgb[3] = { c.r, c.g, c.b };
|
2020-06-08 09:32:39 +02:00
|
|
|
agg::int8u* p = rbuf.row_ptr(y) + x * pixel_size;
|
2020-06-04 16:29:28 +02:00
|
|
|
|
|
|
|
// Indexes to adress RGB colors in a BGRA32 format.
|
2020-06-11 23:11:40 +02:00
|
|
|
const int pixel_index[3] = {Order::R, Order::G, Order::B};
|
2020-06-08 09:32:39 +02:00
|
|
|
for (unsigned cx = 0; cx < len; cx += 3)
|
2020-06-04 16:29:28 +02:00
|
|
|
{
|
|
|
|
for (int i = 0; i < 3; i++) {
|
2020-06-08 09:32:39 +02:00
|
|
|
const unsigned cover_value = covers[cx + i];
|
|
|
|
const unsigned alpha = (cover_value + 1) * (c.a + 1);
|
2020-06-16 14:43:03 +02:00
|
|
|
const unsigned src_col = *(p + pixel_index[i]);
|
|
|
|
*(p + pixel_index[i]) = (((rgb[i] - src_col) * alpha) + (src_col << 16)) >> 16;
|
2020-06-04 16:29:28 +02:00
|
|
|
}
|
2020-06-04 17:17:10 +02:00
|
|
|
// Leave p[3], the alpha channel value unmodified.
|
2020-06-04 16:29:28 +02:00
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 17:17:10 +02:00
|
|
|
// destination implicitly BGRA32. Source implictly single-byte renderer_alpha coverage with subpixel scale = 3.
|
2020-06-11 16:39:11 +02:00
|
|
|
// FIXME: consider using something like RenColor* instead of uint8_t * for dst.
|
2020-06-11 23:19:08 +02:00
|
|
|
void FR_Blend_Glyph(FR_Renderer *font_renderer, FR_Clip_Area *clip, int x, int y, uint8_t *dst, int dst_width, const FR_Bitmap *glyphs_bitmap, const FR_Bitmap_Glyph_Metrics *glyph, FR_Color color) {
|
2020-06-04 16:29:28 +02:00
|
|
|
agg::lcd_distribution_lut& lcd_lut = font_renderer->lcd_distribution_lut();
|
2020-06-11 23:11:40 +02:00
|
|
|
const int subpixel_scale = font_renderer->subpixel_scale();
|
2020-06-11 16:39:11 +02:00
|
|
|
const int pixel_size = 4; // Pixel size for BGRA32 format.
|
|
|
|
|
|
|
|
x += glyph->xoff;
|
|
|
|
y += glyph->yoff;
|
|
|
|
|
|
|
|
int glyph_x = glyph->x0, glyph_y = glyph->y0;
|
|
|
|
int glyph_width = glyph->x1 - glyph->x0;
|
|
|
|
int glyph_height = glyph->y1 - glyph->y0;
|
|
|
|
|
|
|
|
int n;
|
|
|
|
if ((n = clip->left - x) > 0) { glyph_width -= n; glyph_x += n; x += n; }
|
|
|
|
if ((n = clip->top - y) > 0) { glyph_height -= n; glyph_y += n; y += n; }
|
|
|
|
if ((n = x + glyph_width - clip->right ) > 0) { glyph_width -= n; }
|
|
|
|
if ((n = y + glyph_height - clip->bottom) > 0) { glyph_height -= n; }
|
|
|
|
|
|
|
|
if (glyph_width <= 0 || glyph_height <= 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dst += (x + y * dst_width) * pixel_size;
|
|
|
|
agg::rendering_buffer dst_ren_buf(dst, glyph_width, glyph_height, dst_width * pixel_size);
|
|
|
|
|
|
|
|
uint8_t *src = glyphs_bitmap->pixels + (glyph_x + glyph_y * glyphs_bitmap->width) * subpixel_scale;
|
|
|
|
int src_stride = glyphs_bitmap->width * subpixel_scale;
|
|
|
|
|
2020-06-04 16:29:28 +02:00
|
|
|
const agg::rgba8 color_a(color.r, color.g, color.b);
|
2020-06-11 16:39:11 +02:00
|
|
|
for (int x = 0, y = 0; y < glyph_height; y++) {
|
2020-06-04 16:29:28 +02:00
|
|
|
agg::int8u *covers = src + y * src_stride;
|
2020-06-11 23:11:40 +02:00
|
|
|
if (subpixel_scale == 1) {
|
2020-06-16 14:43:03 +02:00
|
|
|
blend_solid_hspan<agg::order_bgra>(dst_ren_buf, x, y, glyph_width, color_a, covers);
|
2020-06-11 23:11:40 +02:00
|
|
|
} else {
|
2020-06-16 14:43:03 +02:00
|
|
|
blend_solid_hspan_subpixel<agg::order_bgra>(dst_ren_buf, lcd_lut, x, y, glyph_width * subpixel_scale, color_a, covers);
|
2020-06-11 23:11:40 +02:00
|
|
|
}
|
2020-06-04 16:29:28 +02:00
|
|
|
}
|
|
|
|
}
|
2020-06-11 16:39:11 +02:00
|
|
|
|