Index: src/gpu/GrOvalRenderer.cpp |
diff --git a/src/gpu/GrOvalRenderer.cpp b/src/gpu/GrOvalRenderer.cpp |
index 23ce230bfa8ffa6008b29774d283b323cc2c0632..ac33a5cc5d9e7665283f5c5bd27f51ee54088d5e 100644 |
--- a/src/gpu/GrOvalRenderer.cpp |
+++ b/src/gpu/GrOvalRenderer.cpp |
@@ -232,9 +232,8 @@ |
builder->fsCodeAppend("\tfloat grad_dot = dot(grad, grad);\n"); |
// we need to clamp the length^2 of the gradiant vector to a non-zero value, because |
// on the Nexus 4 the undefined result of inversesqrt(0) drops out an entire tile |
- if (builder->ctxInfo().caps()->dropsTileOnZeroDivide()) { |
- builder->fsCodeAppend("\tgrad_dot = max(grad_dot, 1.0e-4);\n"); |
- } |
+ // TODO: restrict this to Adreno-only |
+ builder->fsCodeAppend("\tgrad_dot = max(grad_dot, 1.0e-4);\n"); |
builder->fsCodeAppend("\tfloat invlen = inversesqrt(grad_dot);\n"); |
builder->fsCodeAppend("\tfloat edgeAlpha = clamp(0.5-test*invlen, 0.0, 1.0);\n"); |
@@ -381,9 +380,8 @@ |
builder->fsCodeAppend("\tfloat grad_dot = dot(grad, grad);\n"); |
// we need to clamp the length^2 of the gradiant vector to a non-zero value, because |
// on the Nexus 4 the undefined result of inversesqrt(0) drops out an entire tile |
- if (builder->ctxInfo().caps()->dropsTileOnZeroDivide()) { |
- builder->fsCodeAppend("\tgrad_dot = max(grad_dot, 1.0e-4);\n"); |
- } |
+ // TODO: restrict this to Adreno-only |
+ builder->fsCodeAppend("\tgrad_dot = max(grad_dot, 1.0e-4);\n"); |
builder->fsCodeAppend("\tfloat invlen = inversesqrt(grad_dot);\n"); |
if (kHairline == ellipseEffect.getMode()) { |
// can probably do this with one step |