浏览代码

Update README.md

nothings 10 年之前
父节点
当前提交
539dc3996b
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      tests/oversample/README.md

+ 7 - 0
tests/oversample/README.md

@@ -42,3 +42,10 @@ characters.
 So, setting oversampling of 2x2 in stb_truetype is equivalent to caching
 each character in 4 different variations, 1 for each subpixel position
 in a 2x2 set.
+
+The advantage of this formulation is that no changes are required to
+the rendering code; the exact same quad-rendering code works, it just
+uses different texture coordinates. (Note this does potentially increase
+texture bandwidth for text rendering since we end up minifying the texture
+without using mipmapping, but you probably are not going to be fill-bound
+by your text rendering.)