From bda328f43472a887f88887e68072182ce4db9965 Mon Sep 17 00:00:00 2001 From: awtterpip Date: Sun, 18 Feb 2024 21:18:38 -0600 Subject: [PATCH] remove unnecessary trait --- src/openxr/graphics.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/openxr/graphics.rs b/src/openxr/graphics.rs index acf0f7d..ab0b756 100644 --- a/src/openxr/graphics.rs +++ b/src/openxr/graphics.rs @@ -6,11 +6,6 @@ use crate::openxr::resources::*; use crate::openxr::types::{AppInfo, Result, XrError}; use crate::types::BlendMode; -trait GraphicWrapper { - type Inner; - type Func: Fn(); -} - pub trait GraphicsExt: openxr::Graphics { fn from_wgpu_format(format: wgpu::TextureFormat) -> Option; fn to_wgpu_format(format: Self::Format) -> Option;