Manual.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <!DOCTYPE html> <HTML lang=en> <HEAD> <STYLE>
  2. body { background-color: #EEFFEE; font-size: 1.0rem; font-family: Arial; max-width: 60rem;
  3. color: #000000; margin: 0px;
  4. padding-left: 0px; padding-right: 0px; padding-top: 0px; padding-bottom: 0px; }
  5. H1 { padding-left: 10px; padding-right: 0px; padding-top: 10px; padding-bottom: 10px; font-size: 1.4rem; }
  6. H2 { padding-left: 10px; padding-right: 0px; padding-top: 10px; padding-bottom: 0px; font-size: 1.2rem; }
  7. blockquote {
  8. tab-size: 3rem;
  9. color: #88FF88; background: #000000;
  10. font-size: 0.95rem; font-family: monospace;
  11. padding-left: 5px; padding-right: 5px;
  12. padding-top: 5px; padding-bottom: 5px;
  13. }
  14. P { padding-left: 20px; padding-right: 0px; padding-top: 0px; padding-bottom: 0px; }
  15. IMG { padding-left: 0px; padding-right: 0px; padding-top: 2px; padding-bottom: 0px;
  16. max-width: 100%; }
  17. A { display: inline; border-radius: 4px;
  18. font-size: 1.0rem; font-family: Arial; color: #000044; text-decoration: none;
  19. padding-left: 4px; padding-right: 4px; padding-top: 4px; padding-bottom: 4px; }
  20. A:hover { color: #FFFF00; background: #000044; }
  21. A:active { color: #FFFFFF; background: #444444; }
  22. </STYLE> </HEAD> <BODY>
  23. <IMG SRC="Images/Title.png" ALT="Images/Title.png">
  24. <P>
  25. </P><H1> David Piuva's software renderer</H1><P>
  26. </P><P>
  27. When you just want to code in your own pace without worrying about API deprecation.
  28. </P><P>
  29. It should not grow obsolete and bloated like OpenGL from not breaking anything, but it should not require a full rewrite of engines like Direct3D.
  30. This library is entirely statically linked, so that your source code can be saved together with a specific version of the library, a slimmed down modification of the library, or even a mix of different versions.
  31. By being compiled from source code automatically when making changes to the library, it is easy to mix different versions of the library if something eventually has to be removed to reduce bloat.
  32. </P><P>
  33. Anything with "impl" in the name is expected to change at any time, so don't do hacks with the internals unless you copy the code into your own project or stay with the same version of the library.
  34. Anything that requires defining DFPSR_INTERNAL_ACCESS before a header is also considered internal.
  35. </P><P>
  36. </P><IMG SRC="Images/Border.png"><P>
  37. </P><P>
  38. <IMG SRC="Images/SmallDot.png">
  39. <A href="Starting.html">Getting started</A>
  40. </P><P>
  41. <IMG SRC="Images/SmallDot.png">
  42. <A href="Troubleshooting.html">Troubleshooting</A>
  43. </P><P>
  44. </P><IMG SRC="Images/Border.png"><P>
  45. </P><H2> APIs</H2><P>
  46. </P><P>
  47. <IMG SRC="Images/SmallDot.png">
  48. <A href="Strings.html">String API</A>
  49. </P><P>
  50. <IMG SRC="Images/SmallDot.png">
  51. <A href="Buffers.html">Buffer API</A>
  52. </P><P>
  53. <IMG SRC="Images/SmallDot.png">
  54. <A href="Files.html">File API</A>
  55. </P><P>
  56. <IMG SRC="Images/SmallDot.png">
  57. <A href="Images.html">Image API</A>
  58. </P><P>
  59. </P><IMG SRC="Images/Border.png"><P>
  60. </P><H2> Techniques</H2><P>
  61. </P><P>
  62. <IMG SRC="Images/SmallDot.png">
  63. <A href="ImageProcessing.html">Image processing</A>
  64. </P><P>
  65. </P><IMG SRC="Images/Border.png"><P>
  66. </P><H2> Modifying the library</H2><P>
  67. </P><P>
  68. <IMG SRC="Images/SmallDot.png">
  69. <A href="StyleGuide.html">Style guide</A>
  70. </P><P>
  71. </P><IMG SRC="Images/Border.png"><P>
  72. </P><H2> Technical details</H2><P>
  73. </P><P>
  74. <IMG SRC="Images/SmallDot.png">
  75. <A href="License.html">License</A>
  76. </P><P>
  77. <IMG SRC="Images/SmallDot.png">
  78. <A href="Security.html">Security</A></P><IMG SRC="Images/Border.png"><P>
  79. </P>
  80. </BODY> </HTML>