windowing_qt 0.17.5

Implementation of windowing_api using QT Framework
1
2
3
4
5
6
7
8
9
pub struct QSurfaceFormat;

impl QSurfaceFormat {
    pub fn set_default(stencil_bits: i32, depth_bits: i32) {
        unsafe {
            crate::platform::qt::qt_wrapper::QSurfaceFormat_setDefault(stencil_bits, depth_bits);
        }
    }
}