Skip to content

Commit

Permalink
fun with humanshader (pipeline)
Browse files Browse the repository at this point in the history
  • Loading branch information
sylefeb committed Jan 22, 2024
1 parent 341c429 commit 0a0078f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions projects/vga_demo/vga_humanshader.si
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// SL 2024-01-22

$$VGA_640_480 = 1
$$delay = 22540
$$delay = 27333

$include('vga_demo_main.si')

Expand Down Expand Up @@ -135,7 +135,11 @@ algorithm frame_display(

-> // --- next pipeline stage

int22 c = 240*(-v) - p;
// int22 c = 240*(-v) - p;
// this one is heavy, we split it in stages
int22 c = 240*(-v);
->
c = c - p;

-> // --- next pipeline stage

Expand Down

0 comments on commit 0a0078f

Please sign in to comment.