No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

63 líneas
2.0 KiB

  1. /* $Id$ */
  2. /** \mainpage libcaca Documentation
  3. \section intro Introduction
  4. \e libcaca is a graphics library that outputs text instead of pixels,
  5. so that it can work on older video cards or text terminals. It is not
  6. unlike the famous AAlib library. \e libcaca can use almost any virtual
  7. terminal to work, thus it should work on all Unix systems (including
  8. Mac OS X) using either the slang library or the ncurses library, on DOS
  9. using the conio library, and on Windows systems using either slang or
  10. ncurses (through Cygwin emulation) or conio. There is also a native X11
  11. driver, and an OpenGL driver (through freeglut) that does not require a
  12. text terminal. For machines without a screen, the raw driver can be used
  13. to send the output to another machine, using for instance cacaserver.
  14. \e libcaca is free software, released under the Do What The Fuck You
  15. Want To Public License. This ensures that no one, not even the \e libcaca
  16. developers, will ever have anything to say about what you do with the
  17. software. It used to be licensed under the GNU Lesser General Public
  18. License, but that was not free enough.
  19. \section devel Developer's documentation
  20. \e libcaca relies on a low-level, device independent library, called
  21. \e libcucul. \e libcucul can be used alone as a simple ASCII and/or
  22. Unicode compositing canvas.
  23. The complete \e libcucul and \e libcaca programming interface is
  24. available from the following headers:
  25. - cucul.h
  26. - caca.h
  27. Some other topics are covered by specific sections:
  28. - \subpage tutorial
  29. - \subpage migrating
  30. There is also information specially targeted at \e libcaca developers:
  31. - \subpage style
  32. \section user User's documentation
  33. - \subpage env
  34. \section misc Misc
  35. - \subpage news
  36. - \subpage authors
  37. - \subpage thanks
  38. - \subpage todo
  39. \section license License
  40. Permission is granted to copy, distribute and/or modify this document
  41. under the terms of the Do What The Fuck You Want To Public License, version
  42. 2 as published by Sam Hocevar. For details see http://sam.zoy.org/wtfpl/ .
  43. */