#include "common/endian.h"
#include "common/util.h"
#include "common/textconsole.h"
#include "engines/grim/movie/codecs/blocky8.h"
Go to the source code of this file.
Define Documentation
#define COPY_2X1_LINE |
( |
|
dst, |
|
|
|
src | |
|
) |
| | *(uint16 *)(dst) = *(const uint16 *)(src) |
#define COPY_4X1_LINE |
( |
|
dst, |
|
|
|
src | |
|
) |
| | *(uint32 *)(dst) = *(const uint32 *)(src) |
#define FILL_2X1_LINE |
( |
|
dst, |
|
|
|
val | |
|
) |
| | |
Value:do { \
(dst)[0] = val; \
(dst)[1] = val; \
} while (0)
Definition at line 67 of file blocky8.cpp.
#define FILL_4X1_LINE |
( |
|
dst, |
|
|
|
val | |
|
) |
| | |
Value:do { \
(dst)[0] = val; \
(dst)[1] = val; \
(dst)[2] = val; \
(dst)[3] = val; \
} while (0)
Definition at line 59 of file blocky8.cpp.