diff --git a/20120211.html b/20120211.html new file mode 100644 index 0000000..76e0c82 --- /dev/null +++ b/20120211.html @@ -0,0 +1,10 @@ +
+

20120211 - Old School: Modems

+
+ +This brings back memories, years ago used to manually force modem handshake using my voice...

+ + +
+ + diff --git a/20130226.html b/20130226.html new file mode 100644 index 0000000..cafa81f --- /dev/null +++ b/20130226.html @@ -0,0 +1,9 @@ +
+

20130226 - Shader Aliasing and Small Triangles

+
+ +As triangle pixel coverage goes from fully covered towards sub-pixel sized triangles, I think it is important to remember that exact evaluation of the color at the point where the triangle intersects a raster position starts to provide the "wrong" answer and results in shader aliasing. At the point of sub-pixel triangles, any number of triangles may contribute to the "correct" color of a pixel, however without MSAA only one triangle will get shaded, and with NxMSAA only at most N triangles will get shaded. For detailed surfaces moving across a pixel, the triangle normal in the non-MSAA case may change temporally in direction 180 degrees even across one frame. Any attempt to base shading off this triangle normal is likely going to fail in horrid shader aliasing. Texture maps (such as detailed normals) which are encoded with respect to triangle tangent space will fail when multiple triangles start sharing texels in the texture under minification. What is needed in the minification case is a texture lookup which provides the distribution of surface normals in object space. This distribution ideally would also be a function of view direction (self shadowing). Standard GPU forward or deferred shading has the added constraint that this distribution of surface normal encoding must be filterable. This IMO adds a lot of complexity (see LEAN and CLEAN mapping for example). This is an area in which texture space shading should provide a clear cut complexity reduction. When texels are point sampled for shading, surface distribution can be kept in some non-filterable encoding... + +
+ + diff --git a/index.html b/index.html index 9f5eb08..5152272 100644 --- a/index.html +++ b/index.html @@ -217,6 +217,8 @@ and attempting to restore what I can from prior lost images.
20130325 - Understanding WIN32 GetRawInputBuffer()

+20130226 - Shader Aliasing and Small Triangles
+
20130119 - Understanding the Speed of Light of Game Input Latency

2012
@@ -233,6 +235,8 @@ and attempting to restore what I can from prior lost images.
20120513 - Frame Stutter Reduction Via Time Smoothing

+20120211 - Old School: Modems
+
2011
20111031 - Exclusive Core Access