mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-03-10 06:56:28 +00:00
20 lines
551 B
C++
20 lines
551 B
C++
// Copyright 2021 yuzu Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "shader_recompiler/backend/glsl/emit_glsl_instructions.h"
|
|
#include "shader_recompiler/backend/glsl/glsl_emit_context.h"
|
|
#include "shader_recompiler/exception.h"
|
|
|
|
namespace Shader::Backend::GLSL {
|
|
|
|
void EmitJoin(EmitContext&) {
|
|
throw NotImplementedException("Join shouldn't be emitted");
|
|
}
|
|
|
|
void EmitDemoteToHelperInvocation(EmitContext& ctx) {
|
|
ctx.Add("discard;");
|
|
}
|
|
|
|
} // namespace Shader::Backend::GLSL
|