mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-28 22:36:26 -05:00
99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
27 lines
949 B
C++
27 lines
949 B
C++
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "shader_recompiler/backend/spirv/emit_spirv_instructions.h"
|
|
#include "shader_recompiler/backend/spirv/spirv_emit_context.h"
|
|
|
|
namespace Shader::Backend::SPIRV {
|
|
|
|
void EmitJoin(EmitContext&) {
|
|
throw NotImplementedException("Join shouldn't be emitted");
|
|
}
|
|
|
|
void EmitDemoteToHelperInvocation(EmitContext& ctx) {
|
|
if (ctx.profile.support_demote_to_helper_invocation) {
|
|
ctx.OpDemoteToHelperInvocationEXT();
|
|
} else {
|
|
const Id kill_label{ctx.OpLabel()};
|
|
const Id impossible_label{ctx.OpLabel()};
|
|
ctx.OpSelectionMerge(impossible_label, spv::SelectionControlMask::MaskNone);
|
|
ctx.OpBranchConditional(ctx.true_value, kill_label, impossible_label);
|
|
ctx.AddLabel(kill_label);
|
|
ctx.OpKill();
|
|
ctx.AddLabel(impossible_label);
|
|
}
|
|
}
|
|
|
|
} // namespace Shader::Backend::SPIRV
|