mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 09:30:44 +00:00
Tweak NS type declarations in metal-cpp.h
Changes to make metal-cpp enums work nicely with RenderDoc serialization NS::Integer -> std::int64_t NS::UInteger -> std::uint64_t RenderDoc serialization works with fixed sized types
This commit is contained in:
committed by
Baldur Karlsson
parent
fcc721c2e4
commit
cf246ebad7
@@ -519,8 +519,8 @@ namespace NS
|
||||
{
|
||||
using TimeInterval = double;
|
||||
|
||||
using Integer = std::intptr_t;
|
||||
using UInteger = std::uintptr_t;
|
||||
using Integer = std::int64_t;
|
||||
using UInteger = std::uint64_t;
|
||||
|
||||
const Integer IntegerMax = INTPTR_MAX;
|
||||
const Integer IntegerMin = INTPTR_MIN;
|
||||
|
||||
Reference in New Issue
Block a user