mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-05 07:45:08 +01:00
Fix descriptor initialisation order
They need to be setup before the pipeline is created to avoid passing in garbage data.
This commit is contained in:
parent
4652cc5a0a
commit
9223d7f524
@ -45,8 +45,8 @@ namespace skyline::gpu::interconnect::maxwell3d {
|
|||||||
private:
|
private:
|
||||||
std::vector<CachedMappedBufferView> storageBufferViews;
|
std::vector<CachedMappedBufferView> storageBufferViews;
|
||||||
std::array<ShaderStage, engine::ShaderStageCount> shaderStages;
|
std::array<ShaderStage, engine::ShaderStageCount> shaderStages;
|
||||||
cache::GraphicsPipelineCache::CompiledPipeline compiledPipeline;
|
|
||||||
DescriptorInfo descriptorInfo;
|
DescriptorInfo descriptorInfo;
|
||||||
|
cache::GraphicsPipelineCache::CompiledPipeline compiledPipeline;
|
||||||
|
|
||||||
std::array<Pipeline *, 4> transitionCache{};
|
std::array<Pipeline *, 4> transitionCache{};
|
||||||
size_t transitionCacheNextIdx{};
|
size_t transitionCacheNextIdx{};
|
||||||
|
Loading…
Reference in New Issue
Block a user