mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-25 08:13:27 +00:00
Fix some comment error.
This commit is contained in:
parent
5e3796170e
commit
7e202ccbab
@ -902,7 +902,7 @@ impl Default for TextureViewDimension {
|
||||
}
|
||||
|
||||
impl TextureViewDimension {
|
||||
/// Get the texture dimension required fo this texture view dimension.
|
||||
/// Get the texture dimension required of this texture view dimension.
|
||||
pub fn compatible_texture_dimension(self) -> TextureDimension {
|
||||
match self {
|
||||
Self::D1 => TextureDimension::D1,
|
||||
@ -1110,7 +1110,7 @@ pub enum PrimitiveTopology {
|
||||
TriangleList = 3,
|
||||
/// Vertex data is a triangle strip. Each set of three adjacent vertices form a triangle.
|
||||
///
|
||||
/// Vertices `0 1 2 3 4 5` creates four triangles `0 1 2`, `2 1 3`, `3 2 4`, and `4 3 5`
|
||||
/// Vertices `0 1 2 3 4 5` creates four triangles `0 1 2`, `2 1 3`, `2 3 4`, and `4 3 5`
|
||||
TriangleStrip = 4,
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user