gfxconf.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Copyright (c) 2012, 2013, Joel Bodenmann aka Tectu <joel@unormal.org>
  3. * Copyright (c) 2012, 2013, Andrew Hannam aka inmarket
  4. *
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions are met:
  9. * * Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * * Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. * * Neither the name of the <organization> nor the
  15. * names of its contributors may be used to endorse or promote products
  16. * derived from this software without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  19. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  20. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  21. * DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
  22. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  23. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  24. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  25. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  27. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. #ifndef _GFXCONF_H
  30. #define _GFXCONF_H
  31. /* The operating system to use. One of these must be defined - preferably in your Makefile */
  32. #define GFX_USE_OS_CHIBIOS GFXON
  33. #define GFX_MEM_LT64K GFXOFF
  34. #define GOS_NEED_X_HEAP GFXOFF
  35. #define GOS_NEED_X_THREADS GFXOFF
  36. /* GFX sub-systems to turn on */
  37. #define GFX_USE_GDISP GFXON
  38. #define GFX_USE_GWIN GFXON
  39. #define GFX_USE_GMISC GFXON
  40. #define GFX_USE_GTIMER GFXON
  41. #define GFX_USE_GQUEUE GFXON
  42. #define GDISP_NEED_CONTROL GFXON
  43. #define GDISP_DEFAULT_ORIENTATION gOrientationLandscape
  44. /* Features for the GDISP sub-system. */
  45. #define GDISP_NEED_VALIDATION GFXON
  46. #define GDISP_NEED_CLIP GFXON
  47. #define GDISP_NEED_MULTITHREAD GFXON
  48. #define GDISP_NEED_TEXT GFXON
  49. /* GDISP fonts to include */
  50. #define GDISP_INCLUDE_FONT_UI1 GFXOFF
  51. #define GDISP_INCLUDE_FONT_UI2 GFXOFF
  52. #define GDISP_INCLUDE_FONT_LARGENUMBERS GFXOFF
  53. #define GDISP_INCLUDE_FONT_DEJAVUSANS10 GFXON
  54. #define GDISP_INCLUDE_FONT_DEJAVUSANS12 GFXON
  55. #define GDISP_INCLUDE_FONT_DEJAVUSANS16 GFXOFF
  56. #define GDISP_INCLUDE_FONT_DEJAVUSANS20 GFXOFF
  57. #define GDISP_INCLUDE_FONT_DEJAVUSANS24 GFXON
  58. #define GDISP_INCLUDE_FONT_DEJAVUSANS32 GFXOFF
  59. #define GDISP_INCLUDE_FONT_DEJAVUSANSBOLD12 GFXOFF
  60. #define GDISP_INCLUDE_FONT_FIXED_10x20 GFXOFF
  61. #define GDISP_INCLUDE_FONT_FIXED_7x14 GFXOFF
  62. #define GDISP_INCLUDE_FONT_FIXED_5x8 GFXON
  63. /* Features for the GWIN subsystem. */
  64. #define GWIN_NEED_WINDOWMANAGER GFXON
  65. #define GWIN_NEED_CONSOLE GFXON
  66. #define GWIN_CONSOLE_ESCSEQ GFXON
  67. #define GWIN_CONSOLE_USE_HISTORY GFXOFF
  68. //#define GWIN_CONSOLE_HISTORY_AVERAGING GFXON
  69. //#define GWIN_CONSOLE_HISTORY_ATCREATE GFXON
  70. #define GWIN_NEED_GRAPH GFXON
  71. /* Features for the GQUEUE subsystem. */
  72. #define GQUEUE_NEED_ASYNC GFXON
  73. /* Features for the GMISC subsystem. */
  74. #define GMISC_NEED_FASTTRIG GFXON
  75. #define GMISC_NEED_MATRIXFLOAT2D GFXOFF
  76. #define GMISC_NEED_MATRIXFIXED2D GFXOFF
  77. #endif /* _GFXCONF_H */