2022-12-25 17:18:11 +11:00
|
|
|
use ash::vk;
|
2023-01-10 14:53:28 +11:00
|
|
|
use crate::framebuffer::{OutputFramebuffer,};
|
2022-12-25 17:18:11 +11:00
|
|
|
|
2023-01-10 14:53:28 +11:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub(crate) struct RenderTarget<'a> {
|
|
|
|
pub mvp: &'a [f32; 16],
|
|
|
|
pub output: OutputFramebuffer,
|
2022-12-25 17:18:11 +11:00
|
|
|
}
|