From f0098eee138ee6175a7812667d7f87d0259b6f01 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 22 Aug 2025 19:53:00 -0500 Subject: [PATCH] VideoCommon: further remove 'CustomPipeline' details, so we can fully remove it in the very near future --- .../GraphicsModSystem/Runtime/CustomPipeline.h | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.h b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.h index 3a904e08589..7165c9291fd 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.h +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.h @@ -22,21 +22,4 @@ struct CustomPipeline void UpdatePixelData(std::shared_ptr library, std::span texture_units, const VideoCommon::CustomAssetLibrary::AssetID& material_to_load); - - VideoCommon::CachedAsset m_pixel_material; - VideoCommon::CachedAsset m_pixel_shader; - - struct CachedTextureAsset - { - VideoCommon::CachedAsset m_cached_asset; - std::unique_ptr m_texture; - std::string m_sampler_code; - std::string m_define_code; - }; - std::vector> m_game_textures; - - ShaderCode m_last_generated_shader_code; - ShaderCode m_last_generated_material_code; - - std::vector m_material_data; };