Makes public fields private for all the extensions
This commit is contained in:
parent
519a0f0038
commit
e455873d6a
|
@ -8,8 +8,8 @@ use std::ffi::CStr;
|
||||||
use ::RawPtr;
|
use ::RawPtr;
|
||||||
|
|
||||||
pub struct Surface {
|
pub struct Surface {
|
||||||
pub handle: vk::Instance,
|
handle: vk::Instance,
|
||||||
pub surface_fn: vk::SurfaceFn,
|
surface_fn: vk::SurfaceFn,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Surface {
|
impl Surface {
|
||||||
|
|
|
@ -7,8 +7,8 @@ use std::ffi::CStr;
|
||||||
use ::RawPtr;
|
use ::RawPtr;
|
||||||
|
|
||||||
pub struct Win32Surface {
|
pub struct Win32Surface {
|
||||||
pub handle: vk::Instance,
|
handle: vk::Instance,
|
||||||
pub win32_surface_fn: vk::Win32SurfaceFn,
|
win32_surface_fn: vk::Win32SurfaceFn,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Win32Surface {
|
impl Win32Surface {
|
||||||
|
|
|
@ -7,8 +7,8 @@ use std::ffi::CStr;
|
||||||
use ::RawPtr;
|
use ::RawPtr;
|
||||||
|
|
||||||
pub struct XlibSurface {
|
pub struct XlibSurface {
|
||||||
pub handle: vk::Instance,
|
handle: vk::Instance,
|
||||||
pub xlib_surface_fn: vk::XlibSurfaceFn,
|
xlib_surface_fn: vk::XlibSurfaceFn,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl XlibSurface {
|
impl XlibSurface {
|
||||||
|
|
Loading…
Reference in a new issue