examples: Rename events_loop to event_loop

This commit is contained in:
Marijn Suijten 2021-12-21 00:45:18 +01:00 committed by Benjamin Saunders
parent 9d36436a53
commit b56f39e35c

View file

@ -147,7 +147,7 @@ pub struct ExampleBase {
pub swapchain_loader: Swapchain, pub swapchain_loader: Swapchain,
pub debug_utils_loader: DebugUtils, pub debug_utils_loader: DebugUtils,
pub window: winit::window::Window, pub window: winit::window::Window,
pub events_loop: RefCell<EventLoop<()>>, pub event_loop: RefCell<EventLoop<()>>,
pub debug_call_back: vk::DebugUtilsMessengerEXT, pub debug_call_back: vk::DebugUtilsMessengerEXT,
pub pdevice: vk::PhysicalDevice, pub pdevice: vk::PhysicalDevice,
@ -180,7 +180,7 @@ pub struct ExampleBase {
impl ExampleBase { impl ExampleBase {
pub fn render_loop<F: Fn()>(&self, f: F) { pub fn render_loop<F: Fn()>(&self, f: F) {
self.events_loop self.event_loop
.borrow_mut() .borrow_mut()
.run_return(|event, _, control_flow| { .run_return(|event, _, control_flow| {
*control_flow = ControlFlow::Wait; *control_flow = ControlFlow::Wait;
@ -207,14 +207,14 @@ impl ExampleBase {
pub fn new(window_width: u32, window_height: u32) -> Self { pub fn new(window_width: u32, window_height: u32) -> Self {
unsafe { unsafe {
let events_loop = EventLoop::new(); let event_loop = EventLoop::new();
let window = WindowBuilder::new() let window = WindowBuilder::new()
.with_title("Ash - Example") .with_title("Ash - Example")
.with_inner_size(winit::dpi::LogicalSize::new( .with_inner_size(winit::dpi::LogicalSize::new(
f64::from(window_width), f64::from(window_width),
f64::from(window_height), f64::from(window_height),
)) ))
.build(&events_loop) .build(&event_loop)
.unwrap(); .unwrap();
let entry = Entry::new(); let entry = Entry::new();
let app_name = CString::new("VulkanTriangle").unwrap(); let app_name = CString::new("VulkanTriangle").unwrap();
@ -528,7 +528,7 @@ impl ExampleBase {
.unwrap(); .unwrap();
ExampleBase { ExampleBase {
events_loop: RefCell::new(events_loop), event_loop: RefCell::new(event_loop),
entry, entry,
instance, instance,
device, device,