Changes in uspace/lib/congfx/src/console.c [a4e4e29:bc52b5b] in mainline
- File:
-
- 1 edited
-
uspace/lib/congfx/src/console.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/congfx/src/console.c
ra4e4e29 rbc52b5b 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2021 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 91 91 uint8_t attr; 92 92 93 if ((clr >> 24) == 0 xff) {93 if ((clr >> 24) == 0) { 94 94 /* RGB (no text) */ 95 95 ch->ch = 0; 96 96 ch->flags = CHAR_FLAG_DIRTY; 97 97 ch->attrs.type = CHAR_ATTR_RGB; 98 ch->attrs.val.rgb.fgcolor = clr ;98 ch->attrs.val.rgb.fgcolor = clr ^ 0xffffff; 99 99 ch->attrs.val.rgb.bgcolor = clr; 100 100 } else { … … 281 281 } 282 282 283 /** Free up console for other users, suspending GC operation.284 *285 * @param cgc Console GC286 * @return EOK on success or an error code287 */288 errno_t console_gc_suspend(console_gc_t *cgc)289 {290 console_unmap(cgc->con, cgc->buf);291 cgc->buf = NULL;292 293 console_clear(cgc->con);294 console_cursor_visibility(cgc->con, true);295 return EOK;296 }297 298 /** Resume GC operation after suspend.299 *300 * @param cgc Console GC301 * @return EOK on success or an error code302 */303 errno_t console_gc_resume(console_gc_t *cgc)304 {305 errno_t rc;306 307 console_clear(cgc->con);308 309 rc = console_map(cgc->con, cgc->rect.p1.x, cgc->rect.p1.y, &cgc->buf);310 if (rc != EOK)311 return rc;312 313 return EOK;314 }315 316 /** Update console GC size after console resize.317 *318 * @param con Console object319 *320 * @return EOK on success or an error code321 */322 errno_t console_gc_resize(console_gc_t *cgc)323 {324 sysarg_t rows;325 sysarg_t cols;326 charfield_t *buf = NULL;327 errno_t rc;328 329 console_unmap(cgc->con, cgc->buf);330 cgc->buf = NULL;331 332 rc = console_get_size(cgc->con, &cols, &rows);333 if (rc != EOK)334 goto error;335 336 rc = console_map(cgc->con, cols, rows, &buf);337 if (rc != EOK)338 goto error;339 340 cgc->rect.p0.x = 0;341 cgc->rect.p0.y = 0;342 cgc->rect.p1.x = cols;343 cgc->rect.p1.y = rows;344 cgc->clip_rect = cgc->rect;345 cgc->buf = buf;346 return EOK;347 error:348 return rc;349 }350 351 352 283 /** Get generic graphic context from console GC. 353 284 *
Note:
See TracChangeset
for help on using the changeset viewer.
