- 2011 - A trip through the Graphics Pipeline 2011
- 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
- 2020 - GPU ARCHITECTURE RESOURCES
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
| // See image comparison https://imgur.com/a/9L2P7GJ | |
| // Read details https://iolite-engine.com/blog_posts/minimal_agx_implementation | |
| // Usage: | |
| // 1. Open "Project Settings" and change "Working Color Space" to "sRGB / Rec709" | |
| // 2. Open `Engine\Shaders\Private\PostProcessTonemap.usf` file | |
| // 3. Find `half3 OutDeviceColor = ColorLookupTable(FinalLinearColor);` line | |
| // 4. Replace it with `half3 OutDeviceColor = ApplyAgX(FinalLinearColor);` line | |
| // 5. Find `half3 ColorLookupTable( half3 LinearColor )` function | |
| // 6. After the scope of the function, add the code below and run `RecompileShaders Changed` from console |
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
| # Split a repository into batches to avoid `pack exceeds maximum allowed size` on git push | |
| REMOTE=origin | |
| BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
| BATCH_SIZE=500 | |
| # check if the branch exists on the remote | |
| if git show-ref --quiet --verify refs/remotes/$REMOTE/$BRANCH; then | |
| # if so, only push the commits that are not on the remote already | |
| range=$REMOTE/$BRANCH..HEAD |