Ver código fonte

[demos] remove redundant comments

rexim 2 anos atrás
pai
commit
dbb7bb4184
3 arquivos alterados com 0 adições e 11 exclusões
  1. 0 3
      demos/3d.c
  2. 0 4
      demos/triangle.c
  3. 0 4
      demos/triangleTex.c

+ 0 - 3
demos/3d.c

@@ -1,6 +1,3 @@
-// This example renders a rotating 3D cube made out of circles.
-// This idea is that you can take this code and compile it to different platforms with different rendering machanisms:
-// native with SDL, WebAssembly with HTML5 canvas, etc.
 #define SCALE_DOWN_FACTOR 10
 #include "vc.c"
 

+ 0 - 4
demos/triangle.c

@@ -1,6 +1,3 @@
-// This example renders a rotating triangle.
-// This idea is that you can take this code and compile it to different platforms with different rendering machanisms:
-// native with SDL, WebAssembly with HTML5 canvas, etc.
 #define SCALE_DOWN_FACTOR 20
 #include "vc.c"
 
@@ -74,4 +71,3 @@ Olivec_Canvas render(float dt)
 
     return oc;
 }
-

+ 0 - 4
demos/triangleTex.c

@@ -1,6 +1,3 @@
-// This example renders a rotating triangle.
-// This idea is that you can take this code and compile it to different platforms with different rendering machanisms:
-// native with SDL, WebAssembly with HTML5 canvas, etc.
 #define SCALE_DOWN_FACTOR 20
 #include "vc.c"
 #include "assets/tsodinPog.c"
@@ -60,4 +57,3 @@ Olivec_Canvas render(float dt)
 
     return oc;
 }
-