mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-26 12:26:18 +00:00
renderer_vulkan: use LDS buffer as SSBO on unsupported shared memory size (#2245)
* renderer_vulkan: use LDS buffer as SSBO on unsupported shared memory size * shader_recompiler: add `v_trunc_f64` on inst format table
This commit is contained in:
parent
8aea0fc7ee
commit
eed4de1da9
14 changed files with 147 additions and 36 deletions
|
@ -37,7 +37,7 @@ struct VectorIds {
|
|||
|
||||
class EmitContext final : public Sirit::Module {
|
||||
public:
|
||||
explicit EmitContext(const Profile& profile, const RuntimeInfo& runtime_info, const Info& info,
|
||||
explicit EmitContext(const Profile& profile, const RuntimeInfo& runtime_info, Info& info,
|
||||
Bindings& binding);
|
||||
~EmitContext();
|
||||
|
||||
|
@ -132,7 +132,7 @@ public:
|
|||
return ConstantComposite(type, constituents);
|
||||
}
|
||||
|
||||
const Info& info;
|
||||
Info& info;
|
||||
const RuntimeInfo& runtime_info;
|
||||
const Profile& profile;
|
||||
Stage stage;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue