diff --git a/librashader-reflect/src/front/mod.rs b/librashader-reflect/src/front/mod.rs index dddd595..56c0884 100644 --- a/librashader-reflect/src/front/mod.rs +++ b/librashader-reflect/src/front/mod.rs @@ -32,12 +32,6 @@ pub struct SpirvCompilation { pub(crate) fragment: Vec, } -impl SpirvCompilation { - /// Tries to compile SPIR-V from the provided shader source. - pub fn compile(source: &ShaderSource) -> Result { - glslang::compile_spirv(source) - } -} impl TryFrom<&ShaderSource> for SpirvCompilation { type Error = ShaderCompileError;