Makes public fields private for all the extensions

This commit is contained in:
maik klein 2016-12-29 04:18:54 +01:00
parent 519a0f0038
commit e455873d6a
3 changed files with 6 additions and 6 deletions

View file

@ -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 {

View file

@ -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 {

View file

@ -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 {