forked from deniskropp/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO
61 lines (35 loc) · 767 Bytes
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
- Only allow certain typenames for "int" type, e.g. u32, s32, u16...
- Generate stub real implementation optionally in a separate file.
- Generate proper cleanup code in case of multiple object lookups
- Add async and queue flag a la Voodoo request flags
Definition of structs for
- endianness conversion
- debugging purposes
- serialisation
E.g.:
type {
name DFBRectangle
member {
name x
type s32
}
member {
name y
type s32
}
member {
name width
type s32
}
member {
name height
type s32
}
}
Flux Environment / Runtime
- make independent from CoreDFB
- [make independent from Fusion]
- support async returns
foo->retained = Flux_RetainCall();
...
Flux_ReturnCall( foo->retained, ptr, length );