mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-05 00:00:56 +01:00
d3d12: Move Constant inside main
This commit is contained in:
parent
f446501339
commit
789ed767e2
|
|
@ -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…
Reference in a new issue