|
|
|
|
|
by qsera
26 days ago
|
|
One thing that was nice about the graphics programming those days was that when you drew something on the screen, it remained there until your program erased it. This means that you could create cool looking graphics easily. For example, you can just compute the points of a circle and draw the points one by one, and in the screen it will show a full circle being drawn. "Modern" graphics libs (even SDL I think), made this impossible by having redraw the whole screen every frame so that now my program has to remember all the points there the program drew before to get the same effect. The former workflow made graphics programming so much fun for me and I find the modern "fast rendering pipeline" boring and not a lot of fun. Things like that, one by one, have sucked the whole fun out of computing. |
|