Fix broken links in documentation

This commit is contained in:
Héctor Ramón Jiménez 2024-03-22 01:53:48 +01:00
parent 53a183fe0d
commit 85800c99ab
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
9 changed files with 73 additions and 54 deletions

View file

@ -75,6 +75,8 @@ pub struct GradientVertex2D {
pub gradient: gradient::Packed,
}
/// A renderer capable of drawing a [`Mesh`].
pub trait Renderer: core::Renderer {
/// Draws the given [`Mesh`].
fn draw_mesh(&mut self, mesh: Mesh);
}