Cache for vertex buffers
| 159 | } |
| 160 | |
| 161 | struct MsaaTargets { |
| 162 | width: u32, |
| 163 | height: u32, |
| 164 | _msaa_texture: Texture, |
| 165 | msaa_view: TextureView, |
| 166 | _resolved_texture: Texture, |
| 167 | resolved_view: TextureView, |
| 168 | composite_bind_group: BindGroup, |
| 169 | } |
| 170 | |
| 171 | /// Cache for vertex buffers |
| 172 | struct BufferCache { |
| 173 | markers: Option<VertexBuffer>, |
nothing calls this directly
no outgoing calls
no test coverage detected