mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-04-28 21:37:58 +03:00
Update ShaderRecomp submodule.
This commit is contained in:
parent
182b5bebc2
commit
220da348f8
2 changed files with 13 additions and 13 deletions
|
@ -2,21 +2,21 @@
|
||||||
|
|
||||||
struct ShaderCacheEntry
|
struct ShaderCacheEntry
|
||||||
{
|
{
|
||||||
uint64_t hash;
|
const uint64_t hash;
|
||||||
uint32_t dxilOffset;
|
const uint32_t dxilOffset;
|
||||||
uint32_t dxilSize;
|
const uint32_t dxilSize;
|
||||||
uint32_t spirvOffset;
|
const uint32_t spirvOffset;
|
||||||
uint32_t spirvSize;
|
const uint32_t spirvSize;
|
||||||
void* userData;
|
void* userData;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern ShaderCacheEntry g_shaderCacheEntries[];
|
extern ShaderCacheEntry g_shaderCacheEntries[];
|
||||||
extern size_t g_shaderCacheEntryCount;
|
extern const size_t g_shaderCacheEntryCount;
|
||||||
|
|
||||||
extern uint8_t g_compressedDxilCache[];
|
extern const uint8_t g_compressedDxilCache[];
|
||||||
extern size_t g_dxilCacheCompressedSize;
|
extern const size_t g_dxilCacheCompressedSize;
|
||||||
extern size_t g_dxilCacheDecompressedSize;
|
extern const size_t g_dxilCacheDecompressedSize;
|
||||||
|
|
||||||
extern uint8_t g_compressedSpirvCache[];
|
extern const uint8_t g_compressedSpirvCache[];
|
||||||
extern size_t g_spirvCacheCompressedSize;
|
extern const size_t g_spirvCacheCompressedSize;
|
||||||
extern size_t g_spirvCacheDecompressedSize;
|
extern const size_t g_spirvCacheDecompressedSize;
|
||||||
|
|
2
thirdparty/ShaderRecomp
vendored
2
thirdparty/ShaderRecomp
vendored
|
@ -1 +1 @@
|
||||||
Subproject commit 02967c4144e6eeff332c66060e0732934d33d9ce
|
Subproject commit fce786210aa46f9d333143f4829a3c6f14e390bb
|
Loading…
Add table
Add a link
Reference in a new issue