mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-01-08 07:11:22 -08:00
d54d7de40e
This commit regresses VertexA shaders, their transformation pass has to be adapted to the new control flow.
15 lines
393 B
C++
15 lines
393 B
C++
// Copyright 2021 yuzu Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "shader_recompiler/environment.h"
|
|
#include "shader_recompiler/frontend/ir/basic_block.h"
|
|
|
|
namespace Shader::Maxwell {
|
|
|
|
void Translate(Environment& env, IR::Block* block, u32 location_begin, u32 location_end);
|
|
|
|
} // namespace Shader::Maxwell
|