mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-21 19:17:57 +00:00
shader: Emulate 64-bit integers when not supported
Useful for mobile and Intel Xe devices.
This commit is contained in:
parent
e3df2285ca
commit
0a75c400e3
6 changed files with 16 additions and 2 deletions
|
@ -315,7 +315,7 @@ PipelineCache::PipelineCache(RasterizerVulkan& rasterizer_, Tegra::Engines::Maxw
|
|||
};
|
||||
host_info = Shader::HostTranslateInfo{
|
||||
.support_float16 = device.IsFloat16Supported(),
|
||||
.support_int64 = true,
|
||||
.support_int64 = device.IsShaderInt64Supported(),
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue