Changeset 8d2dd7f2 in mainline for uspace/lib/draw
- Timestamp:
- 2017-05-13T19:03:14Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c96634
- Parents:
- e48947e
- Location:
- uspace/lib/draw
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/draw/codec/tga.gz.h
re48947e r8d2dd7f2 37 37 #define DRAW_CODEC_TGA_GZ_H_ 38 38 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 #include "../surface.h" 41 41 -
uspace/lib/draw/codec/tga.h
re48947e r8d2dd7f2 38 38 #define DRAW_CODEC_TGA_H_ 39 39 40 #include <s ys/types.h>40 #include <stddef.h> 41 41 #include "../surface.h" 42 42 -
uspace/lib/draw/codec/webp.c
re48947e r8d2dd7f2 40 40 #include <pixconv.h> 41 41 #include <sys/types.h> 42 #include <stdint.h> 42 43 #include <abi/fourcc.h> 43 44 #include "webp.h" -
uspace/lib/draw/codec/webp.h
re48947e r8d2dd7f2 37 37 #define DRAW_CODEC_WEBP_H_ 38 38 39 #include <s ys/types.h>39 #include <stddef.h> 40 40 #include "../surface.h" 41 41 -
uspace/lib/draw/cursor.h
re48947e r8d2dd7f2 37 37 #define DRAW_CURSOR_H_ 38 38 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 #include "surface.h" -
uspace/lib/draw/cursor/embedded.c
re48947e r8d2dd7f2 35 35 36 36 #include <assert.h> 37 #include <sys/types.h> 37 #include <stddef.h> 38 #include <stdint.h> 38 39 #include <malloc.h> 39 40 -
uspace/lib/draw/drawctx.h
re48947e r8d2dd7f2 37 37 #define DRAW_DRAWCTX_H_ 38 38 39 #include <sys/types.h>40 39 #include <stdbool.h> 41 40 -
uspace/lib/draw/font.h
re48947e r8d2dd7f2 38 38 #define DRAW_FONT_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 #include "surface.h" -
uspace/lib/draw/font/bitmap_backend.h
re48947e r8d2dd7f2 38 38 #define DRAW_FONT_BITMAP_BACKEND_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 #include "../font.h" -
uspace/lib/draw/font/embedded.c
re48947e r8d2dd7f2 35 35 */ 36 36 37 #include <s ys/types.h>37 #include <stdint.h> 38 38 #include <malloc.h> 39 39 #include <errno.h> -
uspace/lib/draw/font/pcf.c
re48947e r8d2dd7f2 34 34 */ 35 35 36 #include <sys/types.h> 36 #include <stddef.h> 37 #include <stdint.h> 37 38 #include <malloc.h> 38 39 #include <errno.h> -
uspace/lib/draw/gfx/cursor-11x18.h
re48947e r8d2dd7f2 37 37 #define CURSOR_11X18_H_ 38 38 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 41 41 #define CURSOR_WIDTH 11 -
uspace/lib/draw/gfx/font-8x16.c
re48947e r8d2dd7f2 34 34 */ 35 35 36 #include <s ys/types.h>36 #include <stdint.h> 37 37 #include "font-8x16.h" 38 38 -
uspace/lib/draw/gfx/font-8x16.h
re48947e r8d2dd7f2 36 36 #define FONT_8X16_H_ 37 37 38 #include <s ys/types.h>38 #include <stdint.h> 39 39 #include <stdbool.h> 40 40 -
uspace/lib/draw/source.h
re48947e r8d2dd7f2 37 37 #define DRAW_SOURCE_H_ 38 38 39 #include <sys/types.h>40 39 #include <stdbool.h> 41 40 -
uspace/lib/draw/surface.h
re48947e r8d2dd7f2 38 38 #define DRAW_SURFACE_H_ 39 39 40 #include <sys/types.h>41 40 #include <stdbool.h> 42 41 #include <io/pixelmap.h>
Note:
See TracChangeset
for help on using the changeset viewer.