Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Static Public Attributes | List of all members
SkTEndianSwap64< N > Struct Template Reference

#include <SkEndian.h>

Static Public Attributes

static const uint64_t value
 

Detailed Description

template<uint64_t N>
struct SkTEndianSwap64< N >

Definition at line 95 of file SkEndian.h.

Member Data Documentation

◆ value

template<uint64_t N>
const uint64_t SkTEndianSwap64< N >::value
static
Initial value:
= (((N & 0x00000000000000FFULL) << (8*7)) |
((N & 0x000000000000FF00ULL) << (8*5)) |
((N & 0x0000000000FF0000ULL) << (8*3)) |
((N & 0x00000000FF000000ULL) << (8*1)) |
((N & 0x000000FF00000000ULL) >> (8*1)) |
((N & 0x0000FF0000000000ULL) >> (8*3)) |
((N & 0x00FF000000000000ULL) >> (8*5)) |
((N) >> (8*7)))
#define N
Definition beziers.cpp:19

Definition at line 96 of file SkEndian.h.


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