Config.in 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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. depends on BR2_PACKAGE_XORG7
  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. select BR2_PACKAGE_XPROTO_GLPROTO
  69. help
  70. This is the SDL OpenGL engine that uses SDL library
  71. and OpenGL to render. This may be hardware accelerated.
  72. config BR2_PACKAGE_LIBEVAS_X11
  73. bool "libevas X11 backend"
  74. depends on BR2_PACKAGE_XORG7
  75. select BR2_PACKAGE_XLIB_LIBX11
  76. help
  77. This enables the software X11 rendering engine that renders
  78. to X drawable targets using highly optimised software
  79. routines. There is no hardware assist here.
  80. config BR2_PACKAGE_LIBEVAS_X11_GLX
  81. bool "libevas X11 GLX backend"
  82. depends on BR2_PACKAGE_XORG7
  83. select BR2_PACKAGE_XLIB_LIBX11
  84. select BR2_PACKAGE_XPROTO_GLPROTO
  85. help
  86. This enables the OpenGL X11 rendering engine that renders
  87. using GLX which may be hardware accelerated.
  88. config BR2_PACKAGE_LIBEVAS_XCB
  89. bool "libevas XCB backend"
  90. depends on BR2_PACKAGE_XORG7
  91. select BR2_PACKAGE_LIBXCB
  92. select BR2_PACKAGE_XCB_UTIL
  93. select BR2_PACKAGE_XCB_PROTO
  94. select BR2_PACKAGE_PIXMAN
  95. help
  96. This enable the software XCB rendering engine. It allows the
  97. same features than the software X11 engine.
  98. config BR2_PACKAGE_LIBEVAS_XCB_GLX
  99. bool "libevas XCB GLX backend"
  100. depends on BR2_PACKAGE_XORG7
  101. select BR2_PACKAGE_LIBXCB
  102. select BR2_PACKAGE_XCB_UTIL
  103. select BR2_PACKAGE_XCB_PROTO
  104. select BR2_PACKAGE_XPROTO_GLPROTO
  105. help
  106. This enables the OpenGL X11 XCB rendering engine that renders
  107. using GLX which may be hardware accelerated.
  108. choice
  109. prompt "libevas OpenGL flavor"
  110. depends on BR2_PACKAGE_LIBEVAS_SDL_GL || BR2_PACKAGE_LIBEVAS_X11_GLX || BR2_PACKAGE_LIBEVAS_XCB_GLX
  111. default BR2_PACKAGE_LIBEVAS_GL
  112. config BR2_PACKAGE_LIBEVAS_GL
  113. bool "generic OpenGL"
  114. config BR2_PACKAGE_LIBEVAS_GLES_SGX
  115. bool "OpenGL-ES SGX"
  116. config BR2_PACKAGE_LIBEVAS_GLES_S3C6410
  117. bool "OpenGL-ES S3C6410"
  118. endchoice
  119. comment "libevas loaders"
  120. config BR2_PACKAGE_LIBEVAS_PNG
  121. bool "libevas png loader"
  122. select BR2_PACKAGE_LIBPNG
  123. help
  124. This enables the loader code that loads png files using
  125. libpng.
  126. config BR2_PACKAGE_LIBEVAS_JPEG
  127. bool "libevas jpeg loader"
  128. select BR2_PACKAGE_JPEG
  129. help
  130. This enables the loader code that loads jpeg files using
  131. libjpeg.
  132. config BR2_PACKAGE_LIBEVAS_GIF
  133. bool "libevas gif loader"
  134. select BR2_PACKAGE_LIBUNGIF
  135. help
  136. This enables the loader code that loads gif files using
  137. libungif.
  138. config BR2_PACKAGE_LIBEVAS_PMAPS
  139. bool "libevas pmaps loader"
  140. help
  141. This enables the loader code that loads pmaps files.
  142. config BR2_PACKAGE_LIBEVAS_TIFF
  143. bool "libevas tiff loader"
  144. select BR2_PACKAGE_TIFF
  145. help
  146. This enables the loader code that loads tiff files.
  147. config BR2_PACKAGE_LIBEVAS_SVG
  148. bool "libevas svg loader"
  149. help
  150. This enables the loader code that loads svg files.
  151. config BR2_PACKAGE_LIBEVAS_XPM
  152. bool "libevas xpm loader"
  153. help
  154. This enables the loader code that loads xpm files.
  155. config BR2_PACKAGE_LIBEVAS_EET
  156. bool "libevas eet image loader"
  157. select BR2_PACKAGE_LIBEET
  158. help
  159. This enables the loader code that loads images using libeet.
  160. config BR2_PACKAGE_LIBEVAS_EET_FONT
  161. bool "libevas eet font loader"
  162. select BR2_PACKAGE_LIBEET
  163. help
  164. This enables the loader code that loads fonts using libeet.
  165. endif # BR2_PACKAGE_LIBEVAS