mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 12:20:07 +00:00
Merge pull request #224 from TheLavaBlock/fix-win32-build
Fix build - 64 bit functions do not exist
This commit is contained in:
commit
6e22ae3109
@ -3074,7 +3074,7 @@ static inline uint32_t VmaCountBitsSet(uint32_t v)
|
||||
|
||||
static inline uint8_t VmaBitScanLSB(uint64_t mask)
|
||||
{
|
||||
#ifdef _MSC_VER
|
||||
#if defined(_MSC_VER) && defined(_WIN64)
|
||||
unsigned long pos;
|
||||
if (_BitScanForward64(&pos, mask))
|
||||
return static_cast<uint8_t>(pos);
|
||||
@ -3108,7 +3108,7 @@ static inline uint8_t VmaBitScanLSB(uint32_t mask)
|
||||
|
||||
static inline uint8_t VmaBitScanMSB(uint64_t mask)
|
||||
{
|
||||
#ifdef _MSC_VER
|
||||
#if defined(_MSC_VER) && defined(_WIN64)
|
||||
unsigned long pos;
|
||||
if (_BitScanReverse64(&pos, mask))
|
||||
return static_cast<uint8_t>(pos);
|
||||
|
Loading…
Reference in New Issue
Block a user