/** * \file * * * \brief Configuration file for GFX module. * * \author Daniele Basile */ #ifndef CFG_GFX_H #define CFG_GFX_H /** * Enable line clipping algorithm. * $WIZ$ type = "boolean" */ #define CONFIG_GFX_CLIPPING 1 /** * Enable text rendering in bitmaps. * $WIZ$ type = "boolean" */ #define CONFIG_GFX_TEXT 1 /** * Enable virtual coordinate system. * $WIZ$ type = "boolean" */ #define CONFIG_GFX_VCOORDS 1 /** * Select bitmap pixel format. * $WIZ$ type = "enum" * $WIZ$ value_list = "bitmap_format" */ #define CONFIG_BITMAP_FMT BITMAP_FMT_PLANAR_V_LSB #endif /* CFG_GFX_H */