Lines Matching defs:ShaderModule
169 pub struct ShaderModule { struct
170 handle: ash::vk::ShaderModule, argument
176 impl ShaderModule { argument
187 ) -> Result<Arc<ShaderModule>, ShaderCreationError> { in from_words()
209 ) -> Result<Arc<ShaderModule>, ShaderCreationError> { in from_bytes()
236 ) -> Result<Arc<ShaderModule>, ShaderCreationError> { in from_words_with_data()
326 ) -> Result<Arc<ShaderModule>, ShaderCreationError> { in from_bytes_with_data()
378 impl Drop for ShaderModule { implementation
388 unsafe impl VulkanObject for ShaderModule { implementation
397 unsafe impl DeviceOwned for ShaderModule { implementation
519 pub fn module(&self) -> &'a ShaderModule { in module()