mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 05:28:07 -05:00
spirv: Fixes and Intel specific workarounds
This commit is contained in:
@ -11,6 +11,7 @@
|
||||
|
||||
#include "shader_recompiler/frontend/ir/program.h"
|
||||
#include "shader_recompiler/shader_info.h"
|
||||
#include "shader_recompiler/profile.h"
|
||||
|
||||
namespace Shader::Backend::SPIRV {
|
||||
|
||||
@ -30,11 +31,13 @@ private:
|
||||
|
||||
class EmitContext final : public Sirit::Module {
|
||||
public:
|
||||
explicit EmitContext(IR::Program& program);
|
||||
explicit EmitContext(const Profile& profile, IR::Program& program);
|
||||
~EmitContext();
|
||||
|
||||
[[nodiscard]] Id Def(const IR::Value& value);
|
||||
|
||||
const Profile& profile;
|
||||
|
||||
Id void_id{};
|
||||
Id U1{};
|
||||
Id U16{};
|
||||
|
Reference in New Issue
Block a user