Changeset 3e828ea in mainline for uspace/lib/gfx
- Timestamp:
- 2019-09-23T12:49:29Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9be2358
- Parents:
- 9259d20 (diff), 1a4ec93f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- Jiri Svoboda <jiri@…> (2019-09-22 12:49:07)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-09-23 12:49:29)
- Location:
- uspace/lib/gfx
- Files:
-
- 1 deleted
- 2 edited
- 1 moved
-
Makefile (deleted)
-
meson.build (moved) (moved from uspace/lib/fdisk/Makefile ) (1 diff)
-
src/backend/console.c (modified) (1 diff)
-
src/color.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gfx/meson.build
r9259d20 r3e828ea 27 27 # 28 28 29 USPACE_PREFIX = ../.. 29 src = files( 30 'src/backend/console.c', 31 'src/color.c', 32 'src/context.c', 33 'src/render.c' 34 ) 30 35 31 LIBRARY = libfdisk 32 33 SOURCES = \ 34 src/fdisk.c 35 36 include $(USPACE_PREFIX)/Makefile.common 36 test_src = files( 37 'test/color.c', 38 'test/main.c', 39 'test/render.c', 40 ) -
uspace/lib/gfx/src/backend/console.c
r9259d20 r3e828ea 43 43 #include <io/pixel.h> 44 44 #include <stdlib.h> 45 #include " private/backend/console.h"46 #include " private/color.h"45 #include "../../private/backend/console.h" 46 #include "../../private/color.h" 47 47 48 48 static errno_t console_gc_set_color(void *, gfx_color_t *); -
uspace/lib/gfx/src/color.c
r9259d20 r3e828ea 37 37 #include <stdint.h> 38 38 #include <stdlib.h> 39 #include " private/color.h"39 #include "../private/color.h" 40 40 41 41 /** Create new 16-bit per channel RGB color.
Note:
See TracChangeset
for help on using the changeset viewer.
