summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/GraphicsModSystem
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoCommon/GraphicsModSystem')
-rw-r--r--Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.h b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomPipeline.h
index 3a904e0858..7165c9291f 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<VideoCommon::CustomAssetLibrary> library,
std::span<const u32> texture_units,
const VideoCommon::CustomAssetLibrary::AssetID& material_to_load);
-
- VideoCommon::CachedAsset<VideoCommon::MaterialAsset> m_pixel_material;
- VideoCommon::CachedAsset<VideoCommon::PixelShaderAsset> m_pixel_shader;
-
- struct CachedTextureAsset
- {
- VideoCommon::CachedAsset<VideoCommon::TextureAsset> m_cached_asset;
- std::unique_ptr<AbstractTexture> m_texture;
- std::string m_sampler_code;
- std::string m_define_code;
- };
- std::vector<std::optional<CachedTextureAsset>> m_game_textures;
-
- ShaderCode m_last_generated_shader_code;
- ShaderCode m_last_generated_material_code;
-
- std::vector<u8> m_material_data;
};