(&self)
| 63 | } |
| 64 | |
| 65 | fn current_commit(&self) -> CommitCounter { |
| 66 | match self { |
| 67 | CustomRenderElements::Texture(elem) => elem.current_commit(), |
| 68 | CustomRenderElements::Surface(elem) => elem.current_commit(), |
| 69 | CustomRenderElements::Shader(elem) => elem.current_commit(), |
| 70 | CustomRenderElements::Window(elem) => elem.current_commit(), |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | fn src(&self) -> Rectangle<f64, Buffer> { |
| 75 | match self { |
nothing calls this directly
no outgoing calls
no test coverage detected