Changeset 2ab8ab3 in mainline for uspace/lib/gfx/include


Ignore:
Timestamp:
2021-02-16T18:12:05Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
68a552f
Parents:
ef734b7
Message:

Client-side UI rendering

It is possible to turn on and off and if turned on, one can also
enable or disable window double buffering (currently both options
are build-time).

Location:
uspace/lib/gfx/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gfx/include/gfx/render.h

    ref734b7 r2ab8ab3  
    11/*
    2  * Copyright (c) 2019 Jiri Svoboda
     2 * Copyright (c) 2021 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    4444extern errno_t gfx_set_color(gfx_context_t *, gfx_color_t *);
    4545extern errno_t gfx_fill_rect(gfx_context_t *, gfx_rect_t *);
     46extern errno_t gfx_update(gfx_context_t *);
    4647
    4748#endif
  • uspace/lib/gfx/include/types/gfx/ops/context.h

    ref734b7 r2ab8ab3  
    11/*
    2  * Copyright (c) 2019 Jiri Svoboda
     2 * Copyright (c) 2021 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    5151        /** Fill rectangle using the current drawing color */
    5252        errno_t (*fill_rect)(void *, gfx_rect_t *);
     53        /** Update display */
     54        errno_t (*update)(void *);
    5355        /** Create bitmap */
    5456        errno_t (*bitmap_create)(void *, gfx_bitmap_params_t *,
Note: See TracChangeset for help on using the changeset viewer.