mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
d3d12: Move Constant inside main
This commit is contained in:
parent
f446501339
commit
789ed767e2
1 changed files with 3 additions and 1 deletions
|
@ -368,14 +368,16 @@ std::string FragmentDecompiler::BuildCode()
|
|||
std::stringstream OS;
|
||||
insertHeader(OS);
|
||||
OS << std::endl;
|
||||
insertConstants(OS);
|
||||
|
||||
OS << std::endl;
|
||||
insertIntputs(OS);
|
||||
OS << std::endl;
|
||||
insertOutputs(OS);
|
||||
OS << std::endl;
|
||||
insertMainStart(OS);
|
||||
insertConstants(OS);
|
||||
OS << main << std::endl;
|
||||
|
||||
insertMainEnd(OS);
|
||||
|
||||
return OS.str();
|
||||
|
|
Loading…
Add table
Reference in a new issue