-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathinstance.rs
44 lines (39 loc) · 1.18 KB
/
instance.rs
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
use std::os::raw;
use cgmath::Matrix4;
use device::Device;
use geometry::Geometry;
use scene::{CommittedScene, Scene};
use sys::*;
use {BufferType, Format, GeometryType};
pub struct Instance<'a> {
device: &'a Device,
pub(crate) handle: RTCGeometry,
/// The scene being instanced
scene: &'a CommittedScene<'a>,
}
impl<'a> Instance<'a> {
pub fn unanimated(device: &'a Device, scene: &'a CommittedScene) -> Instance<'a> {
let h = unsafe { rtcNewGeometry(device.handle, GeometryType::INSTANCE) };
unsafe {
rtcSetGeometryInstancedScene(h, scene.scene.handle);
}
Instance {
device: device,
handle: h,
scene: scene,
}
}
pub fn set_transform(&mut self, transform: &Matrix4<f32>) {
let mat: &[f32; 16] = transform.as_ref();
// Will this be fine if we don't set the number of timesteps? Default should be 1?
unsafe {
rtcSetGeometryTransform(
self.handle,
0,
Format::FLOAT4X4_COLUMN_MAJOR,
mat.as_ptr() as *const raw::c_void,
);
}
}
}
unsafe impl<'a> Sync for Instance<'a> {}