Changeset 9259d20 in mainline for uspace/lib/gfx/src/context.c


Ignore:
Timestamp:
2019-04-16T09:15:55Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3e828ea
Parents:
045186b
git-author:
Jiri Svoboda <jiri@…> (2019-04-15 17:15:29)
git-committer:
Jiri Svoboda <jiri@…> (2019-04-16 09:15:55)
Message:

Drawing rectangles in the console

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gfx/src/context.c

    r045186b r9259d20  
    6464/** Delete graphics context.
    6565 *
    66  * @param gc Graphics context
     66 * @param gc Graphics context or @c NULL
    6767 */
    6868errno_t gfx_context_delete(gfx_context_t *gc)
    6969{
     70        if (gc == NULL)
     71                return EOK;
     72
    7073        free(gc);
    7174        return EOK;
Note: See TracChangeset for help on using the changeset viewer.