#include "color_range.hpp"
#include "config.hpp"
#include "display.hpp"
#include "game_config.hpp"
#include "image.hpp"
#include "image_modifications.hpp"
#include "log.hpp"
#include "sdl/alpha.hpp"
#include "serialization/string_utils.hpp"
#include <map>
Go to the source code of this file.
Namespaces | |
image | |
this module manages the cache of images. | |
Macros | |
#define | GETTEXT_DOMAIN "wesnoth-lib" |
#define | ERR_DP LOG_STREAM(err, log_display) |
#define | LOG_DP LOG_STREAM(info, log_display) |
#define | REGISTER_MOD_PARSER(type, args_var) |
A macro for automatic modification parser registration. More... | |
Variables | |
static lg::log_domain | log_display ("display") |
#define ERR_DP LOG_STREAM(err, log_display) |
Definition at line 30 of file image_modifications.cpp.
Referenced by image::scale_exact_modification::calculate_size(), and image::scale_into_modification::calculate_size().
#define GETTEXT_DOMAIN "wesnoth-lib" |
Definition at line 27 of file image_modifications.cpp.
#define LOG_DP LOG_STREAM(info, log_display) |
Definition at line 31 of file image_modifications.cpp.
#define REGISTER_MOD_PARSER | ( | type, | |
args_var | |||
) |
A macro for automatic modification parser registration.
It automatically registers the created parser in the mod_parsers map It should be used just like a function header (look at the uses below) It should only be used within an anonymous namespace
type | The modification type to be registered (unquoted) |
args_var | The name for the string argument provided |
Definition at line 565 of file image_modifications.cpp.
|
static |