mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- copied non-x86 compile fix from GZDoom.
This commit is contained in:
parent
17e1e4175e
commit
f41e0f9f50
2 changed files with 3 additions and 1 deletions
|
@ -25,6 +25,7 @@
|
||||||
#include "hw_shaderpatcher.h"
|
#include "hw_shaderpatcher.h"
|
||||||
#include "filesystem.h"
|
#include "filesystem.h"
|
||||||
#include "engineerrors.h"
|
#include "engineerrors.h"
|
||||||
|
#include "version.h"
|
||||||
#include <ShaderLang.h>
|
#include <ShaderLang.h>
|
||||||
|
|
||||||
VkShaderManager::VkShaderManager(VulkanDevice *device) : device(device)
|
VkShaderManager::VkShaderManager(VulkanDevice *device) : device(device)
|
||||||
|
|
|
@ -45,8 +45,9 @@ void CheckCPUID(CPUInfo *cpu)
|
||||||
cpu->DataL1LineSize = 32; // Assume a 32-byte cache line
|
cpu->DataL1LineSize = 32; // Assume a 32-byte cache line
|
||||||
}
|
}
|
||||||
|
|
||||||
void DumpCPUInfo(const CPUInfo *cpu)
|
FString DumpCPUInfo(const CPUInfo *cpu)
|
||||||
{
|
{
|
||||||
|
return FString();
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue