queue_present to swapchain
This commit is contained in:
parent
e8f2dcbfc8
commit
8a6a7823c4
|
@ -828,7 +828,7 @@ fn main() {
|
||||||
p_image_indices: &present_index,
|
p_image_indices: &present_index,
|
||||||
p_results: &mut present_info_err,
|
p_results: &mut present_info_err,
|
||||||
};
|
};
|
||||||
base.device.queue_present_khr(base.present_queue, &present_info).unwrap();
|
base.swapchain_loader.queue_present_khr(base.present_queue, &present_info).unwrap();
|
||||||
});
|
});
|
||||||
|
|
||||||
for pipeline in graphics_pipelines {
|
for pipeline in graphics_pipelines {
|
||||||
|
|
|
@ -478,7 +478,7 @@ fn main() {
|
||||||
p_image_indices: &present_index,
|
p_image_indices: &present_index,
|
||||||
p_results: &mut present_info_err,
|
p_results: &mut present_info_err,
|
||||||
};
|
};
|
||||||
base.device.queue_present_khr(base.present_queue, &present_info).unwrap();
|
base.swapchain_loader.queue_present_khr(base.present_queue, &present_info).unwrap();
|
||||||
});
|
});
|
||||||
|
|
||||||
for pipeline in graphics_pipelines {
|
for pipeline in graphics_pipelines {
|
||||||
|
|
Loading…
Reference in a new issue