12 lines
235 B
C
12 lines
235 B
C
#ifndef KONG_TRANSFORMER_HEADER
|
|
#define KONG_TRANSFORMER_HEADER
|
|
|
|
#include <stdint.h>
|
|
|
|
#define TRANSFORM_FLAG_ONE_COMPONENT_SWIZZLE (1 << 0)
|
|
#define TRANSFORM_FLAG_BINARY_UNIFY_LENGTH (1 << 1)
|
|
|
|
void transform(uint32_t flags);
|
|
|
|
#endif
|