2023-01-11 23:05:08 -05:00
|
|
|
use crate::framebuffer::OutputImage;
|
2022-12-25 01:18:11 -05:00
|
|
|
|
2023-01-10 00:11:05 -05:00
|
|
|
#[derive(Clone)]
|
2023-01-09 22:53:28 -05:00
|
|
|
pub(crate) struct RenderTarget<'a> {
|
2023-01-11 02:36:37 -05:00
|
|
|
pub x: f32,
|
|
|
|
pub y: f32,
|
2023-01-09 22:53:28 -05:00
|
|
|
pub mvp: &'a [f32; 16],
|
2023-01-11 23:05:08 -05:00
|
|
|
pub output: OutputImage,
|
2023-01-09 22:54:54 -05:00
|
|
|
}
|