Changeset 7dbf1f6 in mainline


Ignore:
Timestamp:
2024-03-07T09:39:22Z (7 weeks ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
cd27cd1
Parents:
dd19446
git-author:
Jiri Svoboda <jiri@…> (2024-03-06 19:39:05)
git-committer:
Jiri Svoboda <jiri@…> (2024-03-07 09:39:22)
Message:

Render RGB in EGA text mode using eight EGA colors (instead of two)

Location:
uspace
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/congfx/src/console.c

    rdd19446 r7dbf1f6  
    11/*
    2  * Copyright (c) 2021 Jiri Svoboda
     2 * Copyright (c) 2024 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    9696                ch->flags = CHAR_FLAG_DIRTY;
    9797                ch->attrs.type = CHAR_ATTR_RGB;
    98                 ch->attrs.val.rgb.fgcolor = clr ^ 0xffffff;
     98                ch->attrs.val.rgb.fgcolor = clr;
    9999                ch->attrs.val.rgb.bgcolor = clr;
    100100        } else {
  • uspace/srv/hid/output/port/ega.c

    rdd19446 r7dbf1f6  
    11/*
    2  * Copyright (c) 2021 Jiri Svoboda
     2 * Copyright (c) 2024 Jiri Svoboda
    33 * Copyright (c) 2011 Martin Decky
    44 * All rights reserved.
     
    9090                break;
    9191        case CHAR_ATTR_RGB:
    92                 attr = (attrs.val.rgb.bgcolor < attrs.val.rgb.fgcolor) ?
    93                     ega.style_inverted : ega.style_normal;
     92                attr =
     93                    ((RED(attrs.val.rgb.fgcolor) >= 0x80) ? 0x40 : 0) |
     94                    ((GREEN(attrs.val.rgb.fgcolor) >= 0x80) ? 0x20 : 0) |
     95                    ((BLUE(attrs.val.rgb.fgcolor) >= 0x80) ? 0x10 : 0) |
     96                    ((RED(attrs.val.rgb.bgcolor) >= 0x80) ? 0x04 : 0) |
     97                    ((GREEN(attrs.val.rgb.bgcolor) >= 0x80) ? 0x02 : 0) |
     98                    ((BLUE(attrs.val.rgb.bgcolor) >= 0x80) ? 0x01 : 0);
    9499                break;
    95100        }
Note: See TracChangeset for help on using the changeset viewer.