summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/GraphicsModSystem
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2025-09-16 14:49:33 -0400
committerGitHub <noreply@github.com>2025-09-16 14:49:33 -0400
commita8a6cfebc7c064ed1144575e47df48438a490b65 (patch)
tree6c1ff5e8cce8a9cbfd7322c8d33dc6a2d84222d4 /Source/Core/VideoCommon/GraphicsModSystem
parent5a153c3d41d7eb6b99f4832e1c0c88dd0c1de57e (diff)
parentf0098eee138ee6175a7812667d7f87d0259b6f01 (diff)
Merge pull request #13895 from iwubcode/update_shader_asset
VideoCommon: update shader asset to support additional features in custom pipelines
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;
};