diff --git a/librashader-capi/src/runtime/vk/filter_chain.rs b/librashader-capi/src/runtime/vk/filter_chain.rs index 6c46369..8635e48 100644 --- a/librashader-capi/src/runtime/vk/filter_chain.rs +++ b/librashader-capi/src/runtime/vk/filter_chain.rs @@ -14,7 +14,6 @@ pub use librashader::runtime::vk::capi::options::FrameOptionsVulkan; use librashader::runtime::{Size, Viewport}; use ash::vk; -use ash::vk::Handle; pub use ash::vk::PFN_vkGetInstanceProcAddr; diff --git a/librashader-runtime-gl/src/gl/framebuffer.rs b/librashader-runtime-gl/src/gl/framebuffer.rs index a5381e3..881600e 100644 --- a/librashader-runtime-gl/src/gl/framebuffer.rs +++ b/librashader-runtime-gl/src/gl/framebuffer.rs @@ -22,10 +22,6 @@ pub struct Framebuffer { } impl Framebuffer { - pub(crate) fn new(max_levels: u32) -> Self { - T::new(max_levels) - } - /// Create a framebuffer from an already initialized texture and framebuffer. /// /// The framebuffer will not be deleted when this struct is dropped.