NVFBC_BOX

Type Alias NVFBC_BOX 

Source
pub type NVFBC_BOX = _NVFBC_BOX;
Expand description

Box used to describe an area of the tracked region to capture.

The coordinates are relative to the tracked region.

E.g., if the size of the X screen is 3520x1200 and the tracked RandR output scans a region of 1600x1200+1920+0, then setting a capture box of 800x600+100+50 effectively captures a region of 800x600+2020+50 relative to the X screen.

Aliased Type§

#[repr(C)]
pub struct NVFBC_BOX { pub x: u32, pub y: u32, pub w: u32, pub h: u32, }

Fields§

§x: u32

[in] X offset of the box.

§y: u32

[in] Y offset of the box.

§w: u32

[in] Width of the box.

§h: u32

[in] Height of the box.