Skip to main content

video_toolbox/
base.rs

1#[repr(C)]
2#[derive(Debug, Copy, Clone)]
3pub struct VTInt32Point {
4    pub x: i32,
5    pub y: i32,
6}
7
8#[repr(C)]
9#[derive(Debug, Copy, Clone)]
10pub struct VTInt32Size {
11    pub width: i32,
12    pub height: i32,
13}