Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Static Public Member Functions | List of all members
dart::FlowGraphDeserializer::ReadTrait< T, std::enable_if_t< std::is_same_v< uintptr_t, T > &&!std::is_same_v< uintptr_t, uint32_t > &&!std::is_same_v< uintptr_t, uint64_t > > > Struct Template Reference

#include <il_serializer.h>

Static Public Member Functions

static uintptr_t Read (FlowGraphDeserializer *d)
 

Detailed Description

template<typename T>
struct dart::FlowGraphDeserializer::ReadTrait< T, std::enable_if_t< std::is_same_v< uintptr_t, T > &&!std::is_same_v< uintptr_t, uint32_t > &&!std::is_same_v< uintptr_t, uint64_t > > >

Definition at line 437 of file il_serializer.h.

Member Function Documentation

◆ Read()

template<typename T >
static uintptr_t dart::FlowGraphDeserializer::ReadTrait< T, std::enable_if_t< std::is_same_v< uintptr_t, T > &&!std::is_same_v< uintptr_t, uint32_t > &&!std::is_same_v< uintptr_t, uint64_t > > >::Read ( FlowGraphDeserializer d)
inlinestatic

Definition at line 441 of file il_serializer.h.

441 {
442#ifdef ARCH_IS_64_BIT
443 return d->Read<uint64_t>();
444#else
445 return d->Read<uint32_t>();
446#endif
447 }
VULKAN_HPP_DEFAULT_DISPATCH_LOADER_DYNAMIC_STORAGE auto & d
Definition main.cc:19

The documentation for this struct was generated from the following file: