Flutter Engine
The Flutter Engine
Classes | Namespaces | Macros
image_generator_apng.h File Reference
#include "image_generator.h"
#include "flutter/fml/endianness.h"
#include "flutter/fml/logging.h"

Go to the source code of this file.

Classes

class  flutter::APNGImageGenerator
 

Namespaces

namespace  flutter
 

Macros

#define PNG_FIELD(T, name)
 

Macro Definition Documentation

◆ PNG_FIELD

#define PNG_FIELD (   T,
  name 
)
Value:
private: \
T name; \
\
public: \
T get_##name() const { \
return fml::BigEndianToArch<T>(name); \
} \
void set_##name(T n) { \
name = fml::BigEndianToArch<T>(n); \
}
DEF_SWITCHES_START aot vmservice shared library name
Definition: switches.h:32
#define T
Definition: precompiler.cc:65

Definition at line 13 of file image_generator_apng.h.