Skip to content

Commit

Permalink
Add todo comments for metal
Browse files Browse the repository at this point in the history
  • Loading branch information
eloraiby authored and not-fl3 committed May 10, 2024
1 parent 4c588af commit 8a15083
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/graphics/metal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1248,8 +1248,13 @@ impl RenderingBackend for MetalContext {
}
}

fn delete_shader(&mut self, shader: ShaderId) {}
fn delete_pipeline(&mut self, pipeline: Pipeline) {}
fn delete_shader(&mut self, shader: ShaderId) {
// TODO: place holder
}
fn delete_pipeline(&mut self, pipeline: Pipeline) {
// TODO: place holder
}

fn commit_frame(&mut self) {
unsafe {
assert!(!self.command_queue.is_null());
Expand Down

0 comments on commit 8a15083

Please sign in to comment.