draw: tweak AA line texture minimum alpha

AA lines drawn as textured quads look a little better with this change.
Conformance/piglit tests still pass.
This commit is contained in:
Brian Paul
2011-02-09 13:11:12 -07:00
parent da2e541218
commit 413511f796

View File

@@ -461,7 +461,7 @@ aaline_create_texture(struct aaline_stage *aaline)
d = 200; /* tuneable */
}
else if (i == 0 || j == 0 || i == size - 1 || j == size - 1) {
d = 0;
d = 35; /* edge texel */
}
else {
d = 255;