Config.in 5.8 KB

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