documenting

This commit is contained in:
2020-02-04 00:21:15 -08:00
parent da836f318e
commit 4b8fffc6bf
16 changed files with 378 additions and 40 deletions

View File

@@ -3,11 +3,8 @@ Wiki-Format: zim 0.4
Creation-Date: 2020-01-22T18:39:43-08:00
====== Dynamic Vertex ======
Created Wednesday 22 January 2020
{{{code: lang="rust" linenumbers="True"
#[derive(Default, Debug, Clone)]
pub struct RuntimeVertexDef {
buffers: Vec<(u32, usize, InputRate)>, // (attribute id, stride, Vertex or Instance data)
@@ -63,3 +60,6 @@ unsafe impl VertexSource<Vec<Arc<dyn BufferAccess + Send + Sync>>> for RuntimeVe
}
}
}}}