Changeset d6f46c8 in mainline
- Timestamp:
- 2021-03-01T22:22:52Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 760a392
- Parents:
- cd74fa8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/congfx/src/console.c
rcd74fa8 rd6f46c8 164 164 cgc->rect.p0.y = 0; 165 165 cgc->rect.p1.x = cols; 166 cgc->rect.p1.y = rows - 1; /* make sure we avoid bottom-right corner */166 cgc->rect.p1.y = rows; 167 167 cgc->buf = buf; 168 168 … … 313 313 /* Simple copy */ 314 314 for (y = crect.p0.y; y < crect.p1.y; y++) { 315 console_set_pos(cbm->cgc->con, crect.p0.x, y);316 317 315 for (x = crect.p0.x; x < crect.p1.x; x++) { 318 316 clr = pixelmap_get_pixel(&pixelmap, … … 350 348 } else { 351 349 /* Color key & colorize */ 352 console_set_rgb_color(cbm->cgc->con, cbm->cgc->clr,353 cbm->cgc->clr);354 350 ch.ch = 0; 355 351 ch.flags = CHAR_FLAG_DIRTY;
Note:
See TracChangeset
for help on using the changeset viewer.