mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Merge pull request #89420 from RandomShaper/sort_scs
Ensure specialization constants come sorted from reflection
This commit is contained in:
commit
61282068f4
@ -912,6 +912,8 @@ public:
|
||||
|
||||
struct ShaderSpecializationConstant : public PipelineSpecializationConstant {
|
||||
BitField<ShaderStage> stages;
|
||||
|
||||
bool operator<(const ShaderSpecializationConstant &p_other) const { return constant_id < p_other.constant_id; }
|
||||
};
|
||||
|
||||
struct ShaderDescription {
|
||||
|
@ -265,6 +265,8 @@ Error RenderingDeviceDriver::_reflect_spirv(VectorView<ShaderStageSPIRVData> p_s
|
||||
r_reflection.specialization_constants.push_back(sconst);
|
||||
}
|
||||
}
|
||||
|
||||
r_reflection.specialization_constants.sort();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user