Lines Matching refs:proxy
33 * Create a transformation that maps [0, 1] to a proxy's boundaries. The proxy origin also
36 GrCoordTransform(GrTextureProxy* proxy) {
37 SkASSERT(proxy);
39 this->reset(SkMatrix::I(), proxy, true);
43 * Create a transformation from a matrix. The proxy origin also implies whether a y-reversal
46 GrCoordTransform(const SkMatrix& m, GrTextureProxy* proxy) {
47 SkASSERT(proxy);
49 this->reset(m, proxy, true);
60 void reset(const SkMatrix& m, GrTextureProxy* proxy, bool normalize) {
61 SkASSERT(proxy);
65 fProxy = proxy;
67 fReverseY = kBottomLeft_GrSurfaceOrigin == proxy->origin();
113 const GrTextureProxy* proxy() const { return fProxy; }