Update hades

This commit is contained in:
Billy Laws
2022-05-08 19:27:06 +01:00
parent b307fca115
commit e1c13bbc08
3 changed files with 6 additions and 2 deletions

View File

@ -135,6 +135,8 @@ namespace skyline::gpu {
[[nodiscard]] std::array<u32, 3> WorkgroupSize() const final {
return {0, 0, 0}; // Only relevant for compute shaders
}
void Dump(u64 hash) final {}
};
/**
@ -174,6 +176,8 @@ namespace skyline::gpu {
[[nodiscard]] std::array<u32, 3> WorkgroupSize() const final {
return {0, 0, 0}; // Only relevant for compute shaders
}
void Dump(u64 hash) final {}
};
constexpr ShaderManager::ConstantBufferWord::ConstantBufferWord(u32 index, u32 offset, u32 value) : index(index), offset(offset), value(value) {}