Config.in 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. config BR2_PACKAGE_DIRECTFB_EXAMPLES
  2. bool "directfb examples"
  3. depends on BR2_PACKAGE_DIRECTFB
  4. help
  5. The DirectFB-examples package contains a set of simple DirectFB
  6. applications that can be used to test and demonstrate various
  7. DirectFB features.
  8. http://directfb.org/downloads/Extras/README.DirectFB-examples
  9. if BR2_PACKAGE_DIRECTFB_EXAMPLES
  10. config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
  11. bool "usr/bin/df_andi"
  12. help
  13. Penguin demo, press 'space' to form convergence logo,
  14. 's'/'d' to spawn/destroy 'a' penguin, 'r' to revive penguin
  15. after space was pressed, 'c' tests clipping.
  16. config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
  17. bool "usr/bin/df_bltload"
  18. help
  19. Reads information from /proc/bltstat.
  20. config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
  21. bool "usr/bin/df_cpuload"
  22. help
  23. CPU Load with data from /proc/stat.
  24. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
  25. bool "usr/bin/df_databuffer"
  26. help
  27. Simple test application for data buffers.
  28. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
  29. bool "usr/bin/df_dioload"
  30. help
  31. Disk IO with data from /proc/stat.
  32. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
  33. bool "usr/bin/df_dok"
  34. help
  35. DirectFB benchmark application, runs some tests and
  36. displays benchmark results afterwards.
  37. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
  38. bool "usr/bin/df_drivertest"
  39. help
  40. Tool to check drivers for bugs and accuracy.
  41. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
  42. bool "usr/bin/df_fire"
  43. help
  44. The famous fire effect ported to DirectFB (16 bpp only).
  45. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
  46. bool "usr/bin/df_flip"
  47. help
  48. Raw Flip() benchmark.
  49. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
  50. bool "usr/bin/df_fonts"
  51. help
  52. Takes a list of font files and shows character tables.
  53. config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
  54. bool "usr/bin/df_input"
  55. help
  56. Test application for input devices.
  57. config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
  58. bool "usr/bin/df_joystick"
  59. help
  60. A colored version of df_particle, fointain can be moved with
  61. joystick. The particles of different colors can be spawned
  62. with different joystick buttons (1-4).
  63. config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
  64. bool "usr/bin/df_knuckles"
  65. help
  66. 3D skull drawn using triangles that can be rotated using
  67. the mouse. 'Space' switches to wireframe, 'b' toggles
  68. backface culling.
  69. config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
  70. bool "usr/bin/df_layer"
  71. help
  72. Simple videoplayer with layers.
  73. config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
  74. bool "usr/bin/df_matrix"
  75. help
  76. Testing SetMatrix() for free transforms.
  77. config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
  78. bool "usr/bin/df_matrix_water"
  79. help
  80. Same as df_matrix, but using new Water API.
  81. config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
  82. bool "usr/bin/df_neo"
  83. help
  84. Port from a gdk-pixbuf demo to DirectFB, uses scaling,
  85. alpha blending and color modulation, use cursor keys and
  86. space to change parameters.
  87. config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
  88. bool "usr/bin/df_netload"
  89. help
  90. Network statistica from /proc/net/dev.
  91. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
  92. bool "usr/bin/df_palette"
  93. help
  94. A example blitting from a surface with a
  95. rotating/morphing palette.
  96. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
  97. bool "usr/bin/df_particle"
  98. help
  99. A moving fountain consisting of alphablended rectangles,
  100. nice and fast if hardware accelerated.
  101. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
  102. bool "usr/bin/df_porter"
  103. help
  104. Shows porter/duff blending rules.
  105. config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
  106. bool "usr/bin/df_stress"
  107. help
  108. Stress tests surface manager, for debugging purposes only.
  109. config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
  110. bool "usr/bin/df_texture"
  111. help
  112. A simple texture example. The 3d windows can be rotated
  113. with the mouse.
  114. config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
  115. bool "usr/bin/df_video"
  116. help
  117. Shows window stack with alpha blending and video playback
  118. in a moving window.
  119. config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
  120. bool "usr/bin/df_video_particle"
  121. help
  122. Same as df_particle, but the rectangles have been
  123. replaced by a video (via video4linux). Nice color effects.
  124. config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
  125. bool "usr/bin/df_window"
  126. help
  127. Simple demonstration of the DirectFB window stack, follow
  128. the instructions in the upper left corner. Pass a video
  129. device file or a movie file on the command-line to enable
  130. video playback in one of the windows.
  131. endif