mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-27 06:21:02 +00:00
Merge pull request #1657 from kd-11/vulkan-wip
vulkan: Properly handle ssa variable as local
This commit is contained in:
commit
4eb1267c5c
@ -54,6 +54,9 @@ void VKFragmentDecompilerThread::insertIntputs(std::stringstream & OS)
|
||||
{
|
||||
for (const ParamItem& PI : PT.items)
|
||||
{
|
||||
//ssa is defined in the program body and is not a varying type
|
||||
if (PI.name == "ssa") continue;
|
||||
|
||||
const vk::varying_register_t ® = vk::get_varying_register(PI.name);
|
||||
|
||||
std::string var_name = PI.name;
|
||||
|
Loading…
Reference in New Issue
Block a user