mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-05 00:42:48 +00:00
rebase fixes
This commit is contained in:
parent
c8aabc899d
commit
652892d027
@ -154,7 +154,6 @@ void Inst::AddPhiOperand(Block* predecessor, const Value& value) {
|
||||
|
||||
void Inst::Invalidate() {
|
||||
ClearArgs();
|
||||
ASSERT(users.list.empty());
|
||||
ReplaceOpcode(Opcode::Void);
|
||||
}
|
||||
|
||||
|
@ -16,7 +16,7 @@ ComputePipeline::ComputePipeline(const Instance& instance_, Scheduler& scheduler
|
||||
ComputePipelineKey compute_key_, const Shader::Info& info_,
|
||||
vk::ShaderModule module)
|
||||
: Pipeline{instance_, scheduler_, desc_heap_, pipeline_cache, true}, compute_key{compute_key_} {
|
||||
auto& info = stages[int(Shader::Stage::Compute)];
|
||||
auto& info = stages[int(Shader::LogicalStage::Compute)];
|
||||
info = &info_;
|
||||
|
||||
const vk::PipelineShaderStageCreateInfo shader_ci = {
|
||||
|
Loading…
Reference in New Issue
Block a user