Browse Source

Additional work

rexim 4 years ago
parent
commit
5534b79c30
2 changed files with 3 additions and 0 deletions
  1. 2 0
      README.md
  2. 1 0
      gpu.frag

+ 2 - 0
README.md

@@ -10,6 +10,8 @@ Just a fun little project to learn how to render Bézier Curves.
 
 ![thumbnail-gpu](./thumbnail-gpu.png)
 
+<!-- TODO: add links to the screencasts -->
+
 ## Quick Start
 
 ```console

+ 1 - 0
gpu.frag

@@ -21,6 +21,7 @@ void main()
     }
     else
     {
+        // TODO: document this method of rendering in a LaTeX document
         vec2 p0 = gl_FragCoord.xy;
         float a = p3.x - 2 * p2.x + p1.x;
         float b = 2 * (p2.x - p1.x);