Explore >> Select a destination


You are here

kinematicsoup.com
| | frictionalgames.blogspot.com
0.9 parsecs away

Travel
| | Linear-space lighting is the second big change that has been made to the rendering pipeline for HPL3. Working in a linear lighting space ...
| | blog.wolfire.com
2.7 parsecs away

Travel
| |
| | logins.github.io
3.7 parsecs away

Travel
| | Still Textures Since the main article about textures was too long, I dediced to split it in two parts. You can check the first part by following this link. This second post about textures will go trough filtering, swizzling, gamma correction and practical texture usage in D3D12. To check a practical usage of textures you can refer to my github repo FirstDX12Renderer by clicking here. Texture Filtering In a texture sampling context, Filtering is the set of operations that we perform on the texels surrounding the sampling point, to determine the output color. As mentioned in the previous sections, filtering is mainly useful when we sample a texture being transformed in size or rotated: in these cases certain filters will prevent aliasing artifacts. There are d...
| | 0fps.net
25.6 parsecs away

Travel
| Large voxel terrains may contain millions of polygons. Rendering such terrains at a uniform scale is both inefficient and can lead to aliasing of distant objects. As a result, many game engines choose to implement some form of level of detail based rendering, so that distant terrain is rendered with less geometry. http://www.youtube.com/watch?v=4S1sYUHV20s In this...