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;
|
||||
|
||||
pub struct Surface {
|
||||
pub handle: vk::Instance,
|
||||
pub surface_fn: vk::SurfaceFn,
|
||||
handle: vk::Instance,
|
||||
surface_fn: vk::SurfaceFn,
|
||||
}
|
||||
|
||||
impl Surface {
|
||||
|
|
|
@ -7,8 +7,8 @@ use std::ffi::CStr;
|
|||
use ::RawPtr;
|
||||
|
||||
pub struct Win32Surface {
|
||||
pub handle: vk::Instance,
|
||||
pub win32_surface_fn: vk::Win32SurfaceFn,
|
||||
handle: vk::Instance,
|
||||
win32_surface_fn: vk::Win32SurfaceFn,
|
||||
}
|
||||
|
||||
impl Win32Surface {
|
||||
|
|
|
@ -7,8 +7,8 @@ use std::ffi::CStr;
|
|||
use ::RawPtr;
|
||||
|
||||
pub struct XlibSurface {
|
||||
pub handle: vk::Instance,
|
||||
pub xlib_surface_fn: vk::XlibSurfaceFn,
|
||||
handle: vk::Instance,
|
||||
xlib_surface_fn: vk::XlibSurfaceFn,
|
||||
}
|
||||
|
||||
impl XlibSurface {
|
||||
|
|
Loading…
Reference in a new issue