gfxconf.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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_DEJAVUSANS12 GFXON
  51. #define GDISP_INCLUDE_FONT_DEJAVUSANS24 GFXON
  52. /* Features for the GWIN subsystem. */
  53. #define GWIN_NEED_WINDOWMANAGER GFXON
  54. #define GWIN_NEED_CONSOLE GFXON
  55. #define GWIN_CONSOLE_ESCSEQ GFXON
  56. #define GWIN_CONSOLE_USE_HISTORY GFXOFF
  57. //#define GWIN_CONSOLE_HISTORY_AVERAGING GFXON
  58. //#define GWIN_CONSOLE_HISTORY_ATCREATE GFXON
  59. #define GWIN_NEED_GRAPH GFXON
  60. /* Features for the GQUEUE subsystem. */
  61. #define GQUEUE_NEED_ASYNC GFXON
  62. /* Features for the GMISC subsystem. */
  63. #define GMISC_NEED_FASTTRIG GFXON
  64. #define GMISC_NEED_MATRIXFLOAT2D GFXOFF
  65. #define GMISC_NEED_MATRIXFIXED2D GFXOFF
  66. #endif /* _GFXCONF_H */