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
60
61
62
63
64
//! Core functionality for [Clay project](https://clay-rs.github.io/).
/// Own error type.
/// Own result type.
/// Serialization of entities for storing them on the device.
/// Representation of entities that could be stored in the device.
/// Pushing arguments to the device kernel.
/// Rust type hashing to generate unique identfiers in device code.
/// Traits for device code interfaces definition.
/// Basic macro for making a union of entities.
/// Mappings in render space.
/// Shape of an object.
/// Material of an object.
/// Object to render.
/// Scene to be rendered.
/// View of the scene.
/// Filter for rendered image postprocessing.
/// Context of the device code execution.
/// Various device buffers.
/// Functionality for rendering pipeline.
/// Loading the device OpenCL source code.
/// Reexport of the basic traits.
pub use Error;
pub use Result;
pub use *;
pub use *;
pub use *;