X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Ftriface%2Fbenchmark%2Ftriface_kernel_footprint%2Fcfg%2Fcfg_gfx.h;fp=boards%2Ftriface%2Fbenchmark%2Ftriface_kernel_footprint%2Fcfg%2Fcfg_gfx.h;h=59dde04c8ba87525b86d44ed48af4bbeeb31f0c9;hb=1ad9c44812fff13515605ba9511f89b4dc9e9da6;hp=0000000000000000000000000000000000000000;hpb=38c0dde41df492a35e4bd674e4f8bb7b1f575f46;p=bertos.git diff --git a/boards/triface/benchmark/triface_kernel_footprint/cfg/cfg_gfx.h b/boards/triface/benchmark/triface_kernel_footprint/cfg/cfg_gfx.h new file mode 100644 index 00000000..59dde04c --- /dev/null +++ b/boards/triface/benchmark/triface_kernel_footprint/cfg/cfg_gfx.h @@ -0,0 +1,67 @@ +/** + * \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 */ +