Revert "Remove resource system voodoo and make some lines slightly more readable"
This reverts commit9bc869e1a6. Revert "Fix race condition" This reverts commit883e3ce907. Revert "Run the GLSL compiler on the worker thread" This reverts commitda0ff9ab04.
This commit is contained in:
parent
a0e6ebe226
commit
3823196765
9 changed files with 62 additions and 104 deletions
|
|
@ -610,12 +610,12 @@ int VkLightmapper::GetRaytracePipelineIndex()
|
|||
|
||||
FString VkLightmapper::LoadPrivateShaderLump(const char* lumpname)
|
||||
{
|
||||
return fb->GetShaderCache()->GetPrivateFile(lumpname)->Code;
|
||||
return fb->GetShaderCache()->GetPrivateFile(lumpname).Code;
|
||||
}
|
||||
|
||||
FString VkLightmapper::LoadPublicShaderLump(const char* lumpname)
|
||||
{
|
||||
return fb->GetShaderCache()->GetPublicFile(lumpname)->Code;
|
||||
return fb->GetShaderCache()->GetPublicFile(lumpname).Code;
|
||||
}
|
||||
|
||||
void VkLightmapper::CreateRaytracePipeline()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue