mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2025-04-10 14:28:27 +02:00
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.
17 lines
498 B
C++
17 lines
498 B
C++
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "shader_recompiler/backend/glasm/emit_glasm_instructions.h"
|
|
#include "shader_recompiler/backend/glasm/glasm_emit_context.h"
|
|
|
|
namespace Shader::Backend::GLASM {
|
|
|
|
void EmitJoin(EmitContext&) {
|
|
throw NotImplementedException("Join shouldn't be emitted");
|
|
}
|
|
|
|
void EmitDemoteToHelperInvocation(EmitContext& ctx) {
|
|
ctx.Add("KIL TR.x;");
|
|
}
|
|
|
|
} // namespace Shader::Backend::GLASM
|