mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 04:10:06 +00:00
Fix build - removed usage of DWORD type
This commit is contained in:
parent
8da08d160a
commit
b99c428aef
@ -3109,7 +3109,7 @@ static inline uint8_t VmaBitScanLSB(uint32_t mask)
|
||||
static inline uint8_t VmaBitScanMSB(uint64_t mask)
|
||||
{
|
||||
#ifdef _MSC_VER
|
||||
DWORD pos;
|
||||
unsigned long pos;
|
||||
if (_BitScanReverse64(&pos, mask))
|
||||
return static_cast<uint8_t>(pos);
|
||||
#else
|
||||
@ -3126,7 +3126,7 @@ static inline uint8_t VmaBitScanMSB(uint64_t mask)
|
||||
static inline uint8_t VmaBitScanMSB(uint32_t mask)
|
||||
{
|
||||
#ifdef _MSC_VER
|
||||
DWORD pos;
|
||||
unsigned long pos;
|
||||
if (_BitScanReverse(&pos, mask))
|
||||
return static_cast<uint8_t>(pos);
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user