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

View file

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

View file

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