Changeset b433f68 in mainline for uspace/lib/gfxfont/test/text.c


Ignore:
Timestamp:
2021-02-26T16:23:36Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
77ffa01
Parents:
fe40b67
Message:

Puttext needs to know the color of the text being printed

So far we were using the GC's current drawing color. But unless there
was a way to read it, we could not render text-mode text in the correct
color.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gfxfont/test/text.c

    rfe40b67 rb433f68  
    2727 */
    2828
     29#include <gfx/color.h>
    2930#include <gfx/context.h>
    3031#include <gfx/font.h>
     
    110111        gfx_font_t *font;
    111112        gfx_context_t *gc;
     113        gfx_color_t *color;
    112114        gfx_text_fmt_t fmt;
    113115        gfx_coord2_t pos;
     
    118120        PCUT_ASSERT_ERRNO_VAL(EOK, rc);
    119121
     122        rc = gfx_color_new_rgb_i16(0, 0, 0, &color);
     123        PCUT_ASSERT_ERRNO_VAL(EOK, rc);
     124
    120125        rc = gfx_typeface_create(gc, &tface);
    121126        PCUT_ASSERT_ERRNO_VAL(EOK, rc);
     
    127132
    128133        gfx_text_fmt_init(&fmt);
     134        fmt.color = color;
    129135        pos.x = 0;
    130136        pos.y = 0;
     
    135141        gfx_font_close(font);
    136142        gfx_typeface_destroy(tface);
     143        gfx_color_delete(color);
    137144
    138145        rc = gfx_context_delete(gc);
Note: See TracChangeset for help on using the changeset viewer.