mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 23:27:56 -05: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.
14 lines
374 B
C++
14 lines
374 B
C++
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#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
|