Changeset 9259d20 in mainline for uspace/lib/gfx/src/context.c
- Timestamp:
- 2019-04-16T09:15:55Z (6 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gfx/src/context.c
r045186b r9259d20 64 64 /** Delete graphics context. 65 65 * 66 * @param gc Graphics context 66 * @param gc Graphics context or @c NULL 67 67 */ 68 68 errno_t gfx_context_delete(gfx_context_t *gc) 69 69 { 70 if (gc == NULL) 71 return EOK; 72 70 73 free(gc); 71 74 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.