1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
use std::sync::{Arc, LazyLock};
use ash::vk::{self, ClearValue};
mod pass;
pub use pass::*;
pub mod pass_context;
pub use pass_context::*;
pub mod types;
pub use types::*;
mod resources;
pub use resources::*;
use crate::bindless::Bindless;
use crate::camera::{Camera, CameraData};
use crate::core::{Device, Resolution as _, SwapchainError, VulkanError, VulkanResult};
use crate::frame_values::{FrameData, FrameValues};
use crate::per_frame::CommandPoolPerFrame;
use crate::render_context::RenderContext;
use crate::resources::{Create, Destroy, Res, Resources};
pub struct FrameGraph {
execution_order: Vec<usize>,
passes: Vec<Pass>,
}
impl FrameGraph {
/// Create new [`FrameGraph`]
pub(crate) fn new() -> VulkanResult<Self> {
Ok(FrameGraph {
execution_order: vec![],
passes: vec![],
})
}
pub fn add_pass<P: Into<Pass>>(&mut self, pass: P) {
self.passes.push(pass.into());
}
pub(crate) fn compile(&mut self, ctx: &Arc<RenderContext>, resources: &Arc<Resources>) -> VulkanResult<()> {
profiling::scope!("FrameGraph::compile");
self.topological_sort();
Ok(())
}
pub fn import<T: Destroy + Import>(&mut self, res: Res<T>) -> Handle<T> {
todo!()
}
fn topological_sort(&mut self) {
profiling::scope!("FrameGraph::topological_sort");
self.execution_order = (0..self.passes.len()).collect();
}
pub(crate) fn execute(&mut self, ctx: &Arc<RenderContext>, resources: &Arc<Resources>) -> VulkanResult<()> {
let device = &ctx.device;
// ------------------------Acquire Next Image-----------------------------
let image_index = {
let window = &ctx.window.read();
let sync = &window.frame_sync[window.current_frame % window.frame_sync.len()];
// Wait fence for next frame or skip frame
unsafe {
let wait = device.wait_for_fences(&[sync.in_flight_fence.raw], true, u64::MAX);
if let Err(err) = wait {
log::error!("Error wait for fences: {:?}", err);
return Ok(());
}
device
.reset_fences(&[sync.in_flight_fence.raw])
.map_err(VulkanError::Unknown)?;
}
// Get image index or skip a frame
unsafe {
match window
.swapchain
.loader
.acquire_next_image(window.swapchain.raw, u64::MAX, sync.image_available.raw, vk::Fence::null())
{
Ok((index, _)) => {
index
},
Err(vk::Result::ERROR_OUT_OF_DATE_KHR) => {
return Err(VulkanError::Swapchain(SwapchainError::SwapchainOutOfDateKhr));
},
Err(e) => {
return Err(VulkanError::Unknown(e));
},
}
}
};
// ------------------------Record Command Buffers-----------------------------
{
let window = ctx.window.read();
let resolution = window.resolution;
for i in self.execution_order.drain(..) {
let pass = &self.passes.swap_remove(i);
match pass {
Pass::Present(pass) => {
let frame_buffer = &window.frame_buffers[image_index as usize];
let clear_values = vec![
ClearValue {
color: vk::ClearColorValue {
float32: [0.0, 0.0, 0.0, 1.0],
},
},
ClearValue {
depth_stencil: vk::ClearDepthStencilValue {
depth: 1.0,
stencil: 0,
},
},
];
let render_pass_begin_info =
vk::RenderPassBeginInfo::default()
.render_pass(window.render_pass.raw)
.framebuffer(frame_buffer.raw)
.render_area(vk::Rect2D {
offset: vk::Offset2D { x: 0, y: 0 },
extent: resolution,
})
.clear_values(&clear_values);
// unsafe {
// device.cmd_begin_render_pass(
// command_buffer,
// &render_pass_begin_info,
// vk::SubpassContents::INLINE,
// );
// }
// let pass_ctx = PassContext {
// external_resources: resources.clone(),
// bindless: todo!(),
// scissor: vk::Rect2D::default()
// .extent(resolution)
// .offset(vk::Offset2D { x: 0, y: 0 }),
// viewport: vk::Viewport::default()
// .height(resolution.height as f32)
// .width(resolution.width as f32)
// .x(0.0)
// .y(0.0),
// resolution,
// pipeline: todo!(),
// layout: todo!(),
// device: todo!(),
// cbuf: todo!(),
// };
// //(*pass.execute())(&pass_ctx, &renderables);
// unsafe {
// device.cmd_end_render_pass(command_buffer);
// }
// // pass.end_sync(command_buffer);
// unsafe {
// device
// .end_command_buffer(command_buffer)
// .expect("Error end command buffer");
// }
},
Pass::Raster(pass) => {
}
}
}
}
let mut window = ctx.window.write();
let sync = &window.frame_sync[window.current_frame % window.frame_sync.len()];
// -----------------------Submit-----------------------------
let wait_semaphores = [sync.image_available.raw];
let wait_stages =
[vk::PipelineStageFlags::COLOR_ATTACHMENT_OUTPUT];
let signal_semaphores = [sync.render_finished.raw];
let submit_info = vk::SubmitInfo::default()
.wait_semaphores(&wait_semaphores)
.wait_dst_stage_mask(&wait_stages)
//.command_buffers(command_buffers)
.signal_semaphores(&signal_semaphores);
// unsafe {
// profiling::scope!("vkQueueSubmit");
// device
// .queue_submit(
// // self.graphics_queue,
// &[submit_info],
// sync.in_flight_fence.raw,
// )
// .expect("Error submit commands to queue");
// }
// -----------------------Present-----------------------------
let swapchain = [window.swapchain.raw];
let image_indices = [image_index];
let present_info = vk::PresentInfoKHR::default()
.wait_semaphores(&signal_semaphores)
.swapchains(&swapchain)
.image_indices(&image_indices);
// unsafe {
// profiling::scope!("vkQueuePresent");
// window
// .swapchain
// .loader
// .queue_present(self.graphics_queue, &present_info)
// .expect("Error present");
// }
log::debug!(
"Image index: {}, Frame: {}",
image_index,
window.current_frame
);
window.current_frame += 1;
Ok(())
}
// /// Execute graph
// pub(crate) fn execute(&mut self) -> VulkanResult<()> {
// profile_scope!("FrameGraph::execute");
// let image_index = Self::acquire_next_image(&self.ctx)?;
// let device = &self.ctx.device;
// let window = self.ctx.window.read().unwrap();
// let resolution = window.resolution;
// let frame_count = window.frame_buffers.len();
// // Get Command Buffers or skip frame
// let pass_count = self.passes.len();
// let command_buffers =
// self.command_pool.allocate_cmd_buffers(
// device,
// image_index,
// frame_count,
// pass_count,
// )?;
// // Reset Command Buffers or skip frame
// for i in command_buffers {
// unsafe {
// let reset = device.reset_command_buffer(
// *i,
// vk::CommandBufferResetFlags::empty(),
// );
// if let Err(err) = reset {
// log::error!(
// "Reset command buffer error: {:?}",
// err
// );
// return Err(VulkanError::Unknown(
// vk::Result::from_raw(0),
// ));
// }
// let begin_info =
// vk::CommandBufferBeginInfo::default( )
//
// .flags(vk::CommandBufferUsageFlags::SIMULTANEOUS_USE);
// device
// .begin_command_buffer(*i, &begin_info)
// .expect("Error begin command buffer");
// }
// }
// // Record Command Buffer
// for i in self.execution_order.drain(..) {
// let command_buffer = command_buffers[i];
// let pass = &self.passes[i];
// // pass.begin_sync(command_buffer);
// let pass_ctx = PassContext {
// bindless_set: self.bindless.bindless_set(),
// resolution,
// device: device.raw.clone(),
// cbuf: command_buffer,
// pipeline: pass.pipeline(&self.resources),
// layout: pass.pipeline_layout(&self.resources),
// resources: self.resources.clone(),
// };
// let renderables = self
// .resources
// .assets
// .read()
// .unwrap()
// .renderable
// .get_renderables();
// let clear_values = vec![
// ClearValue {
// color: vk::ClearColorValue {
// float32: [0.0, 0.0, 0.0, 1.0],
// },
// },
// ClearValue {
// depth_stencil: vk::ClearDepthStencilValue {
// depth: 1.0,
// stencil: 0,
// },
// },
// ];
// let s = self.resources.low_level.read().unwrap();
// let frame_buffer = if pass.is_present() {
// &window.frame_buffers[image_index as usize]
// } else {
// let handle = pass.framebuffer();
// s.frame_buffer.get(handle).unwrap()
// };
// let render_pass_begin_info =
// vk::RenderPassBeginInfo::default()
// .render_pass(window.render_pass.raw)
// .framebuffer(frame_buffer.raw)
// .render_area(vk::Rect2D {
// offset: vk::Offset2D { x: 0, y: 0 },
// extent: resolution,
// })
// .clear_values(&clear_values);
// unsafe {
// device.cmd_begin_render_pass(
// command_buffer,
// &render_pass_begin_info,
// vk::SubpassContents::INLINE,
// );
// }
// //(*pass.execute())(&pass_ctx, &renderables);
// unsafe {
// device.cmd_end_render_pass(command_buffer);
// }
// // pass.end_sync(command_buffer);
// unsafe {
// device
// .end_command_buffer(command_buffer)
// .expect("Error end command buffer");
// }
// }
// drop(window);
// let window = &mut self.ctx.window.write().unwrap();
// let sync = &window.frame_sync
// [window.current_frame % window.frame_buffers.len()];
// // Submit
// let wait_semaphores = [sync.image_available.raw];
// let wait_stages =
// [vk::PipelineStageFlags::COLOR_ATTACHMENT_OUTPUT];
// let signal_semaphores = [sync.render_finished.raw];
// let submit_info = vk::SubmitInfo::default()
// .wait_semaphores(&wait_semaphores)
// .wait_dst_stage_mask(&wait_stages)
// .command_buffers(command_buffers)
// .signal_semaphores(&signal_semaphores);
// unsafe {
// device
// .queue_submit(
// self.graphics_queue,
// &[submit_info],
// sync.in_flight_fence.raw,
// )
// .expect("Error submit commands to queue");
// }
// // Present
// let swapchain = [window.swapchain.raw];
// let image_indices = [image_index];
// let present_info = vk::PresentInfoKHR::default()
// .wait_semaphores(&signal_semaphores)
// .swapchains(&swapchain)
// .image_indices(&image_indices);
// unsafe {
// window
// .swapchain
// .loader
// .queue_present(self.graphics_queue, &present_info)
// .expect("Error present");
// }
// // log::debug!(
// // "Image index: {}, Frame: {}",
// // image_index,
// // window.current_frame
// // );
// self.frame_values.update(
// device,
// image_index,
// window.current_frame as u32,
// )?;
// self.passes.clear();
// window.current_frame += 1;
// Ok(())
// }
pub(crate) fn destroy(&mut self, device: &Device) {
}
}