(&self, zoom: u32)
| 97 | |
| 98 | impl LensControl for MsmfLens { |
| 99 | fn set_zoom(&self, zoom: u32) -> Result<()> { |
| 100 | unsafe { |
| 101 | set_media_type_uint64(&self.source_reader.0, &MF_MT_VIDEO_LIGHTING, zoom as u64); |
| 102 | } |
| 103 | Ok(()) |
| 104 | } |
| 105 | |
| 106 | /// Sets the camera focus position. |
| 107 | /// |
nothing calls this directly
no test coverage detected