Changeset 7e38970d in mainline for uspace/lib/gfx/include
- Timestamp:
- 2020-12-07T00:08:37Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 25f26600
- Parents:
- 7a873f0 (diff), 8596474 (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. - Location:
- uspace/lib/gfx/include
- Files:
-
- 2 edited
-
gfx/coord.h (modified) (2 diffs)
-
types/gfx/bitmap.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gfx/include/gfx/coord.h
r7a873f0 r7e38970d 40 40 #include <types/gfx/coord.h> 41 41 42 extern gfx_coord_t gfx_coord_div_rneg(gfx_coord_t, gfx_coord_t); 42 43 extern void gfx_coord2_add(gfx_coord2_t *, gfx_coord2_t *, gfx_coord2_t *); 43 44 extern void gfx_coord2_subtract(gfx_coord2_t *, gfx_coord2_t *, gfx_coord2_t *); … … 51 52 extern void gfx_rect_envelope(gfx_rect_t *, gfx_rect_t *, gfx_rect_t *); 52 53 extern void gfx_rect_clip(gfx_rect_t *, gfx_rect_t *, gfx_rect_t *); 54 extern void gfx_rect_ctr_on_rect(gfx_rect_t *, gfx_rect_t *, gfx_rect_t *); 53 55 extern void gfx_rect_points_sort(gfx_rect_t *, gfx_rect_t *); 54 56 extern void gfx_rect_dims(gfx_rect_t *, gfx_coord2_t *); -
uspace/lib/gfx/include/types/gfx/bitmap.h
r7a873f0 r7e38970d 47 47 /** Bitmap flags */ 48 48 typedef enum { 49 /** Directly map GC output into this bitmap */ 50 bmpf_direct_output = 0x1, 49 51 /** Enable color key */ 50 bmpf_color_key = 0x 1,51 /** Directly map GC output into this bitmap*/52 bmpf_ direct_output = 0x252 bmpf_color_key = 0x2, 53 /** Paint non-background pixels with current drawing color */ 54 bmpf_colorize = 0x4 53 55 } gfx_bitmap_flags_t; 54 56
Note:
See TracChangeset
for help on using the changeset viewer.
