diff options
author | David Herrmann <dh.herrmann@googlemail.com> | 2012-09-04 17:58:37 +0200 |
---|---|---|
committer | David Herrmann <dh.herrmann@googlemail.com> | 2012-09-04 17:58:37 +0200 |
commit | 6ae5ddc0e73d9de6984cbfc567d15565323975e9 (patch) | |
tree | 8d15f7030e1e4922c2f813063ab15e01d8e05709 /src/text_bbulk.c | |
parent | 720d8d8dfd45f4a779f7c24ead5a04f6261678be (diff) |
text: add bbulk renderer
The bbulk renderer is very similar to the bblit renderer but it assembles
a request-buffer of all characters and then pushes these requests via a
vector-call to the video hardware.
This turns out to increase performance slightly as we do not call into the
video subsystem for every characters but only once.
This renderer can reduce performance when used with partial-redraws (which
are not implemented, yet), so we keep the bblit renderer around.
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Diffstat (limited to 'src/text_bbulk.c')
-rw-r--r-- | src/text_bbulk.c | 192 |
1 files changed, 192 insertions, 0 deletions
diff --git a/src/text_bbulk.c b/src/text_bbulk.c new file mode 100644 index 0000000..aaf5201 --- /dev/null +++ b/src/text_bbulk.c @@ -0,0 +1,192 @@ +/* + * kmscon - Bit-Blitting Bulk Text Renderer Backend + * + * Copyright (c) 2012 David Herrmann <dh.herrmann@googlemail.com> + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files + * (the "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +/** + * SECTION:text_bbulk.c + * @short_description: Bit-Blitting Bulk Text Renderer Backend + * @include: text.h + * + * Similar to the bblit renderer but assembles an array of blit-requests and + * pushes all of them at once to the video device. + */ + +#include <errno.h> +#include <stdbool.h> +#include <stdlib.h> +#include <string.h> +#include "log.h" +#include "static_misc.h" +#include "text.h" +#include "unicode.h" +#include "uterm.h" + +#define LOG_SUBSYSTEM "text_bbulk" + +struct bbulk { + struct uterm_video_blend_req *reqs; +}; + +#define FONT_WIDTH(txt) ((txt)->font->attr.width) +#define FONT_HEIGHT(txt) ((txt)->font->attr.height) + +#define SCREEN_WIDTH(txt) uterm_screen_width((txt)->screen) +#define SCREEN_HEIGHT(txt) uterm_screen_height((txt)->screen) + +static int bbulk_init(struct kmscon_text *txt) +{ + struct bbulk *bb; + + bb = malloc(sizeof(*bb)); + if (!bb) + return -ENOMEM; + + txt->data = bb; + return 0; +} + +static void bbulk_destroy(struct kmscon_text *txt) +{ + struct bbulk *bb = txt->data; + + free(bb); +} + +static int bbulk_set(struct kmscon_text *txt) +{ + struct bbulk *bb = txt->data; + unsigned int sw, sh, i, j; + struct uterm_video_blend_req *req; + + memset(bb, 0, sizeof(*bb)); + + sw = SCREEN_WIDTH(txt); + sh = SCREEN_HEIGHT(txt); + + txt->cols = sw / FONT_WIDTH(txt); + txt->rows = sh / FONT_HEIGHT(txt); + + bb->reqs = malloc(sizeof(*bb->reqs) * txt->cols * txt->rows); + if (!bb->reqs) + return -ENOMEM; + memset(bb->reqs, 0, sizeof(*bb->reqs) * txt->cols * txt->rows); + + for (i = 0; i < txt->rows; ++i) { + for (j = 0; j < txt->cols; ++j) { + req = &bb->reqs[i * txt->cols + j]; + req->x = j * FONT_WIDTH(txt); + req->y = i * FONT_HEIGHT(txt); + } + } + + return 0; +} + +static void bbulk_unset(struct kmscon_text *txt) +{ + struct bbulk *bb = txt->data; + + free(bb->reqs); + bb->reqs = NULL; +} + +static int bbulk_draw(struct kmscon_text *txt, kmscon_symbol_t ch, + unsigned int posx, unsigned int posy, + const struct font_char_attr *attr) +{ + struct bbulk *bb = txt->data; + const struct kmscon_glyph *glyph; + int ret; + struct uterm_video_blend_req *req; + + if (ch == 0 || ch == ' ') { + ret = kmscon_font_render_empty(txt->font, &glyph); + } else { + ret = kmscon_font_render(txt->font, ch, &glyph); + } + + if (ret) { + ret = kmscon_font_render_inval(txt->font, &glyph); + if (ret) + return ret; + } + + req = &bb->reqs[posy * txt->cols + posx]; + req->buf = &glyph->buf; + if (attr->inverse) { + req->fr = attr->br; + req->fg = attr->bg; + req->fb = attr->bb; + req->br = attr->fr; + req->bg = attr->fg; + req->bb = attr->fb; + } else { + req->fr = attr->fr; + req->fg = attr->fg; + req->fb = attr->fb; + req->br = attr->br; + req->bg = attr->bg; + req->bb = attr->bb; + } + + return 0; +} + +static int bbulk_render(struct kmscon_text *txt) +{ + struct bbulk *bb = txt->data; + + return uterm_screen_blendv(txt->screen, bb->reqs, + txt->cols * txt->rows); +} + +static const struct kmscon_text_ops kmscon_text_bbulk_ops = { + .name = "bbulk", + .init = bbulk_init, + .destroy = bbulk_destroy, + .set = bbulk_set, + .unset = bbulk_unset, + .prepare = NULL, + .draw = bbulk_draw, + .render = bbulk_render, + .abort = NULL, +}; + +int kmscon_text_bbulk_load(void) +{ + int ret; + + ret = kmscon_text_register(&kmscon_text_bbulk_ops); + if (ret) { + log_error("cannot register bbulk renderer"); + return ret; + } + + return 0; +} + +void kmscon_text_bbulk_unload(void) +{ + kmscon_text_unregister(kmscon_text_bbulk_ops.name); +} |