mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-23 00:37:03 +02:00
fix with bigger batch sizes
This commit is contained in:
parent
b260d48bfc
commit
2ecf45cef2
20 changed files with 164 additions and 152 deletions
|
|
@ -1,4 +1,4 @@
|
|||
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
||||
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
||||
|
|
@ -18,6 +18,11 @@ class Value;
|
|||
|
||||
namespace Shader::Backend::GLASM {
|
||||
|
||||
[[nodiscard]] inline bool IsInputArray(Stage stage) {
|
||||
return stage == Stage::Geometry || stage == Stage::TessellationControl
|
||||
|| stage == Stage::TessellationEval;
|
||||
}
|
||||
|
||||
class EmitContext;
|
||||
|
||||
// Microinstruction emitters
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue