You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. SDL_RenderGeometryis added to rendering functionalities in SDL 2.0.18. It can render arbitrary triangle list directly within one call. Are there any plans to add such method to sdl2::render::Canvas?
The method signature may be pub fn geometry(&mut self, texture: &Texture<'_>, vertices: &[Vertex], indices: Option<&[u32]>), and the type Vertex is a wrapper of SDL_Vertex.