Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

user.dox 1.0 KiB

123456789101112131415161718192021222324
  1. /** \page libcaca-env Libcaca environment variables
  2. Some environment variables can be used to change the behaviour of
  3. \e libcaca without having to modify the program which uses it. These
  4. variables are:
  5. \li \b CACA_DRIVER: set the backend video driver. In order of preference:
  6. - \c conio uses the DOS conio.h interface.
  7. - \c ncurses uses the ncurses library.
  8. - \c slang uses the S-Lang library.
  9. - \c x11 uses the native X11 driver.
  10. - \c gl uses freeglut and opengl libraries.
  11. - \c raw outputs to the standard output instead of rendering the
  12. canvas. This is can be used together with cacaserver.
  13. \li \b CACA_GEOMETRY: set the video display size. The format of this
  14. variable must be \c XxY, with \c X and \c Y being integer values. This
  15. option currently works with the raw, X11 and GL drivers.
  16. \li \b CACA_FONT: set the rendered font. The format of this variable is
  17. implementation dependent, but since it currently only works with the
  18. X11 driver, an X11 font name such as \c fixed or \c 5x7 is expected.
  19. */