Home
last modified time | relevance | path

Searched refs:rectUniform (Results 1 – 3 of 3) sorted by relevance

/third_party/flutter/skia/src/gpu/effects/
DGrAARectEffect.fp11 uniform float4 rectUniform;
21 alpha = all(greaterThan(float4(sk_FragCoord.xy, rectUniform.zw),
22 float4(rectUniform.xy, sk_FragCoord.xy))) ? 1 : 0;
28 xSub = min(half(sk_FragCoord.x - rectUniform.x), 0.0);
29 xSub += min(half(rectUniform.z - sk_FragCoord.x), 0.0);
30 ySub = min(half(sk_FragCoord.y - rectUniform.y), 0.0);
31 ySub += min(half(rectUniform.w - sk_FragCoord.y), 0.0);
47 pdman.set4f(rectUniform, newRect.fLeft, newRect.fTop, newRect.fRight, newRect.fBottom);
/third_party/flutter/skia/src/gpu/effects/generated/
DGrAARectEffect.cpp69 UniformHandle& rectUniform = rectUniformVar; in onSetData() local
70 (void)rectUniform; in onSetData()
74 pdman.set4f(rectUniform, newRect.fLeft, newRect.fTop, newRect.fRight, newRect.fBottom); in onSetData()
/third_party/skia/src/gpu/
DGrFragmentProcessor.cpp637 SkRect rectUniform = GrClipEdgeTypeIsAA(edgeType) ? rect.makeOutset(.5f, .5f) : rect; in Rect() local
642 "rectUniform", rectUniform); in Rect()