Lines Matching refs:proxies
29 static void make_proxies(int count, TArray<sk_sp<GrSurfaceProxy>>* proxies) { in make_proxies() argument
30 proxies->reset(count); in make_proxies()
33 proxies->at(i) = sk_make_sp<GrMockSurfaceProxy>(std::move(name), in make_proxies()
51 TArray<sk_sp<GrSurfaceProxy>> proxies; in create_graph0() local
52 make_proxies(2, &proxies); in create_graph0()
55 graph->at(0)->addTarget(proxies[0]); in create_graph0()
56 graph->at(1)->addTarget(proxies[1]); in create_graph0()
57 graph->at(2)->addTarget(proxies[0]); in create_graph0()
71 TArray<sk_sp<GrSurfaceProxy>> proxies; in create_graph1() local
72 make_proxies(3, &proxies); in create_graph1()
75 graph->at(0)->addTarget(proxies[0]); in create_graph1()
76 graph->at(1)->addTarget(proxies[1]); in create_graph1()
77 graph->at(2)->addTarget(proxies[0]); in create_graph1()
78 graph->at(3)->addTarget(proxies[2]); in create_graph1()
79 graph->at(4)->addTarget(proxies[0]); in create_graph1()
95 TArray<sk_sp<GrSurfaceProxy>> proxies; in create_graph2() local
96 make_proxies(2, &proxies); in create_graph2()
99 graph->at(0)->addTarget(proxies[0]); in create_graph2()
100 graph->at(1)->addTarget(proxies[1]); in create_graph2()
101 graph->at(2)->addTarget(proxies[0]); in create_graph2()
118 TArray<sk_sp<GrSurfaceProxy>> proxies; in create_graph3() local
119 make_proxies(2, &proxies); in create_graph3()
122 graph->at(0)->addTarget(proxies[0]); in create_graph3()
123 graph->at(1)->addTarget(proxies[1]); in create_graph3()
124 graph->at(2)->addTarget(proxies[0]); in create_graph3()
125 graph->at(3)->addTarget(proxies[1]); in create_graph3()
130 graph->at(1)->addUsed(proxies[0]); in create_graph3()
131 graph->at(3)->addUsed(proxies[0]); in create_graph3()