working through the pipeline I have going on for the text stuff

This commit is contained in:
2019-10-08 21:31:57 -07:00
parent 86eb27f86d
commit b1b081af87
4 changed files with 105 additions and 69 deletions

View File

@@ -9,3 +9,11 @@ pub struct Vertex3D {
vulkano::impl_vertex!(Vertex3D, v_position, color, ti_position);
/// Text vertex 3d with vertex position
#[derive(Default, Debug, Clone, Copy)]
pub struct TextVertex3D {
pub position: [f32; 3],
}
vulkano::impl_vertex!(TextVertex3D, position);