- 2011 - A trip through the Graphics Pipeline 2011
- 2013 - Performance Optimization Guidelines and the GPU Architecture behind them
- 2015 - Life of a triangle - NVIDIA's logical pipeline
- 2015 - Render Hell 2.0
- 2016 - How bad are small triangles on GPU and why?
- 2017 - GPU Performance for Game Artists
- 2019 - Understanding the anatomy of GPUs using Pokémon
Because I have no trust in people.
<hashlink>points to your installation of Hashlink, e.g. folder in whichhl.exe(or Unix executable) is, alongside with library binaries (.hdllfiles), andincludefolder.<src>points to the folder containing generated HL/C sources. One that containshlc.jsonfile.<app>refers to your output executable name, including extension.<main>refers to your entry-point file name, including extension (see below).- I provide example of doing it on Windows via MSVC
cl.exe, but Unix should be more or less same with replacement of argument flags and compiler. - I expect that you DO have a compiler installed and can call
cl.exeor other compiler from command-line.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =begin pod | |
| Raku is a gradual typed language, allowing you to completely ignore typing for quick mock ups, | |
| or enforce very strict typing to ensure reliability in critical programs. This is a guide for | |
| certain issues that can come up when writing strongly typed Raku code. | |
| =head1 Basic typing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local server = true -- Change to false for the client | |
| local connectionId | |
| local pollGroup | |
| Steam = require "luasteam" | |
| Steam.init() | |
| -- We call this to let Steam know that we want to use the networking sockets API. | |
| -- Which probably won't do much in this example, but it can save you a delay. |