Implement generic pipeline caching

This commit is contained in:
Timon
2026-06-14 23:20:35 +00:00
parent b1d8ac0e64
commit 78618d28a8
27 changed files with 581 additions and 431 deletions

View File

@@ -9,7 +9,7 @@ pub use graphene_application_io::ApplicationIo;
#[derive(Default)]
pub struct PlatformApplicationIo {
#[cfg(feature = "wgpu")]
pub(crate) gpu_executor: Option<WgpuExecutor>,
gpu_executor: Option<WgpuExecutor>,
resources: Option<Box<dyn resource::LoadResource>>,
}