1 | /* |
---|
2 | * libcucul Canvas for ultrafast compositing of Unicode letters |
---|
3 | * Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org> |
---|
4 | * All Rights Reserved |
---|
5 | * |
---|
6 | * $Id: cucul_internals.h 1338 2006-11-11 12:57:03Z sam $ |
---|
7 | * |
---|
8 | * This library is free software; you can redistribute it and/or |
---|
9 | * modify it under the terms of the Do What The Fuck You Want To |
---|
10 | * Public License, Version 2, as published by Sam Hocevar. See |
---|
11 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
12 | */ |
---|
13 | |
---|
14 | #ifndef __CUCUL_INTERNALS_H__ |
---|
15 | #define __CUCUL_INTERNALS_H__ |
---|
16 | |
---|
17 | #if defined(HAVE_INTTYPES_H) && !defined(__KERNEL__) |
---|
18 | # include <inttypes.h> |
---|
19 | #endif |
---|
20 | |
---|
21 | struct cucul_frame |
---|
22 | { |
---|
23 | /* Frame size */ |
---|
24 | unsigned int width, height; |
---|
25 | |
---|
26 | /* Cell information */ |
---|
27 | uint32_t *chars; |
---|
28 | uint32_t *attrs; |
---|
29 | |
---|
30 | /* Painting context */ |
---|
31 | uint32_t curattr; |
---|
32 | }; |
---|
33 | |
---|
34 | struct cucul_canvas |
---|
35 | { |
---|
36 | /* Frame information */ |
---|
37 | unsigned int frame, framecount; |
---|
38 | struct cucul_frame *frames; |
---|
39 | |
---|
40 | unsigned int refcount; |
---|
41 | |
---|
42 | /* Shortcut to the active frame information */ |
---|
43 | unsigned int width, height; |
---|
44 | uint32_t *chars; |
---|
45 | uint32_t *attrs; |
---|
46 | uint32_t curattr; |
---|
47 | }; |
---|
48 | |
---|
49 | struct cucul_buffer |
---|
50 | { |
---|
51 | unsigned long int size; |
---|
52 | char *data; |
---|
53 | int user_data; |
---|
54 | }; |
---|
55 | |
---|
56 | /* Canvas functions */ |
---|
57 | extern int _cucul_set_canvas_size(cucul_canvas_t *, unsigned int, unsigned int); |
---|
58 | |
---|
59 | /* Colour functions */ |
---|
60 | extern uint16_t _cucul_attr_to_rgb12fg(uint32_t); |
---|
61 | extern uint16_t _cucul_attr_to_rgb12bg(uint32_t); |
---|
62 | extern uint32_t _cucul_attr_to_rgb24fg(uint32_t); |
---|
63 | extern uint32_t _cucul_attr_to_rgb24bg(uint32_t); |
---|
64 | extern void _cucul_attr_to_argb4(uint32_t, uint8_t[8]); |
---|
65 | |
---|
66 | #endif /* __CUCUL_INTERNALS_H__ */ |
---|