Config.in 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. config BR2_PACKAGE_LIBEVAS
  2. bool "libevas"
  3. depends on !BR2_avr32 # no epoll_create1 or inotify_init1
  4. select BR2_PACKAGE_FREETYPE
  5. select BR2_PACKAGE_LIBEINA
  6. # required to build so far
  7. select BR2_PACKAGE_LIBEVAS_SCALE_SMOOTH
  8. help
  9. Evas is a clean display canvas API for several target
  10. display systems that can draw anti-aliased text, smooth
  11. super and sub-sampled scaled images, alpha-blend objects
  12. much and more.
  13. http://trac.enlightenment.org/e/wiki/Evas
  14. if BR2_PACKAGE_LIBEVAS
  15. comment "libevas rendering options"
  16. config BR2_PACKAGE_LIBEVAS_SCALE_SAMPLE
  17. bool "libevas sampling scaler"
  18. help
  19. This enables the sampling scaler code. This is the fastest
  20. image scaling code, but also the lowest quality.
  21. config BR2_PACKAGE_LIBEVAS_SCALE_SMOOTH
  22. bool "libevas smooth scaler"
  23. help
  24. This is the nicest looking scaler that is not that much
  25. slower than tri-linear, but it looks really good.
  26. config BR2_PACKAGE_LIBEVAS_SMALL_DITHERING
  27. bool "libevas small dithering"
  28. help
  29. This uses a 4x4 dither mask instead of 128x128. On desktop
  30. boxes these days (Pentium, Pentium2, amd etc.) the speed
  31. difference is not really measurable, but the quality of the
  32. 128x128 dither mask is quite a lot better.
  33. config BR2_PACKAGE_LIBEVAS_LINE_DITHERING
  34. bool "libevas line dithering"
  35. config BR2_PACKAGE_LIBEVAS_NO_DITHERING
  36. bool "libevas no dithering"
  37. comment "libevas backends"
  38. config BR2_PACKAGE_LIBEVAS_BUFFER
  39. bool "libevas buffer backend"
  40. help
  41. This enables the software buffer rendering engine. There is
  42. no hardware assist here.
  43. config BR2_PACKAGE_LIBEVAS_DIRECTFB
  44. bool "libevas DirectFB backend"
  45. depends on BR2_PACKAGE_DIRECTFB
  46. default y
  47. help
  48. This is the DirectFB engine that uses the DirectFB library
  49. (http://www.directfb.org) on Linux to access the framebuffer
  50. with (or maybe without) acceleration.
  51. config BR2_PACKAGE_LIBEVAS_FB
  52. bool "libevas frame buffer backend"
  53. help
  54. This is the software framebuffer driving engine. this uses
  55. the linux framebuffer device (/dev/fb<x>) and will currently
  56. just inherit the current framebuffer settings on the fb
  57. device and use them to run in.
  58. config BR2_PACKAGE_LIBEVAS_SDL
  59. bool "libevas SDL backend"
  60. select BR2_PACKAGE_SDL
  61. help
  62. This is the software SDL engine that uses SDL library
  63. (http://www.libsdl.org). This library should work on many
  64. operating systems.
  65. config BR2_PACKAGE_LIBEVAS_SDL_GL
  66. bool "libevas SDL OpenGL backend"
  67. depends on BR2_PACKAGE_SDL_X11
  68. depends on BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR # mesa needs big X
  69. help
  70. This is the SDL OpenGL engine that uses SDL library
  71. and OpenGL to render. This may be hardware accelerated.
  72. comment "SDL OpenGL backend needs modular X.org and X11 support in SDL"
  73. depends on !(BR2_PACKAGE_SDL_X11 && BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR)
  74. config BR2_PACKAGE_LIBEVAS_X11
  75. bool "libevas X11 backend"
  76. depends on BR2_PACKAGE_XORG7
  77. select BR2_PACKAGE_XLIB_LIBX11
  78. select BR2_PACKAGE_XLIB_LIBXEXT
  79. help
  80. This enables the software X11 rendering engine that renders
  81. to X drawable targets using highly optimised software
  82. routines. There is no hardware assist here.
  83. config BR2_PACKAGE_LIBEVAS_X11_GLX
  84. bool "libevas X11 GLX backend"
  85. depends on BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR # mesa needs big X
  86. select BR2_PACKAGE_XLIB_LIBX11
  87. select BR2_PACKAGE_XLIB_LIBXRENDER
  88. select BR2_PACKAGE_XLIB_LIBXEXT
  89. select BR2_PACKAGE_XPROTO_GLPROTO
  90. help
  91. This enables the OpenGL X11 rendering engine that renders
  92. using GLX which may be hardware accelerated.
  93. config BR2_PACKAGE_LIBEVAS_XCB
  94. bool "libevas XCB backend"
  95. depends on BR2_PACKAGE_XORG7
  96. select BR2_PACKAGE_LIBXCB
  97. select BR2_PACKAGE_XCB_UTIL
  98. select BR2_PACKAGE_XCB_PROTO
  99. select BR2_PACKAGE_PIXMAN
  100. help
  101. This enable the software XCB rendering engine. It allows the
  102. same features than the software X11 engine.
  103. config BR2_PACKAGE_LIBEVAS_XCB_GLX
  104. bool "libevas XCB GLX backend"
  105. depends on BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR # mesa needs big X
  106. select BR2_PACKAGE_LIBXCB
  107. select BR2_PACKAGE_XCB_UTIL
  108. select BR2_PACKAGE_XCB_PROTO
  109. select BR2_PACKAGE_XPROTO_GLPROTO
  110. help
  111. This enables the OpenGL X11 XCB rendering engine that renders
  112. using GLX which may be hardware accelerated.
  113. choice
  114. prompt "libevas OpenGL flavor"
  115. depends on BR2_PACKAGE_LIBEVAS_SDL_GL || BR2_PACKAGE_LIBEVAS_X11_GLX || BR2_PACKAGE_LIBEVAS_XCB_GLX
  116. default BR2_PACKAGE_LIBEVAS_GL
  117. config BR2_PACKAGE_LIBEVAS_GL
  118. bool "generic OpenGL"
  119. select BR2_PACKAGE_MESA3D
  120. select BR2_PACKAGE_LIBEET
  121. config BR2_PACKAGE_LIBEVAS_GLES_SGX
  122. bool "OpenGL-ES SGX"
  123. config BR2_PACKAGE_LIBEVAS_GLES_S3C6410
  124. bool "OpenGL-ES S3C6410"
  125. endchoice
  126. comment "libevas loaders"
  127. config BR2_PACKAGE_LIBEVAS_PNG
  128. bool "libevas png loader"
  129. select BR2_PACKAGE_LIBPNG
  130. help
  131. This enables the loader code that loads png files using
  132. libpng.
  133. config BR2_PACKAGE_LIBEVAS_JPEG
  134. bool "libevas jpeg loader"
  135. select BR2_PACKAGE_JPEG
  136. help
  137. This enables the loader code that loads jpeg files using
  138. libjpeg.
  139. config BR2_PACKAGE_LIBEVAS_GIF
  140. bool "libevas gif loader"
  141. select BR2_PACKAGE_LIBUNGIF
  142. help
  143. This enables the loader code that loads gif files using
  144. libungif.
  145. config BR2_PACKAGE_LIBEVAS_PMAPS
  146. bool "libevas pmaps loader"
  147. help
  148. This enables the loader code that loads pmaps files.
  149. config BR2_PACKAGE_LIBEVAS_TIFF
  150. bool "libevas tiff loader"
  151. select BR2_PACKAGE_TIFF
  152. help
  153. This enables the loader code that loads tiff files.
  154. config BR2_PACKAGE_LIBEVAS_XPM
  155. bool "libevas xpm loader"
  156. help
  157. This enables the loader code that loads xpm files.
  158. config BR2_PACKAGE_LIBEVAS_EET
  159. bool "libevas eet image loader"
  160. select BR2_PACKAGE_LIBEET
  161. help
  162. This enables the loader code that loads images using libeet.
  163. config BR2_PACKAGE_LIBEVAS_EET_FONT
  164. bool "libevas eet font loader"
  165. select BR2_PACKAGE_LIBEET
  166. help
  167. This enables the loader code that loads fonts using libeet.
  168. endif # BR2_PACKAGE_LIBEVAS