We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9857bfe commit dd8badfCopy full SHA for dd8badf
1 file changed
crates/lambda-platform/src/gfx/framebuffer.rs
@@ -68,13 +68,3 @@ impl FramebufferBuilder {
68
return Framebuffer { frame_buffer };
69
}
70
71
-
72
-/// Internal functions to work with gfx-hal framebuffers directly. Applications
73
-/// should not need to use these functions directly.
74
-pub(crate) mod internal {
75
- pub fn frame_buffer_for<RenderBackend: gfx_hal::Backend>(
76
- frame_buffer: &super::Framebuffer<RenderBackend>,
77
- ) -> &RenderBackend::Framebuffer {
78
- return &frame_buffer.frame_buffer;
79
- }
80
-}
0 commit comments