Lines Matching refs:out
57 struct test_target out, ref;
63 test_target_create_render(&t->out, target, &out);
64 clear(&out);
71 int x = rand() % out.width;
72 int y = rand() % out.height;
73 int w = rand() % (out.width - x);
74 int h = rand() % (out.height - y);
75 int tx = rand() % (2*out.width) - out.width;
76 int ty = rand() % (2*out.height) - out.height;
83 fill_rect(&out, alu, NULL, 0,
94 out.draw, out.format,
96 0, 0, out.width, out.height,
102 test_target_destroy_render(&t->out, &out);
108 struct test_target out, ref;
114 test_target_create_render(&t->out, target, &out);
115 clear(&out);
122 int x = rand() % (2*out.width) - out.width;
123 int y = rand() % (2*out.height) - out.height;
124 int w = rand() % (2*out.width);
125 int h = rand() % (2*out.height);
126 int tx = rand() % (2*out.width) - out.width;
127 int ty = rand() % (2*out.height) - out.height;
134 fill_rect(&out, alu, NULL, 0,
145 out.draw, out.format,
147 0, 0, out.width, out.height,
153 test_target_destroy_render(&t->out, &out);
159 struct test_target out, ref;
166 test_target_create_render(&t->out, target, &out);
167 clear(&out);
176 clip[r].x = rand() % out.width;
177 clip[r].y = rand() % out.height;
178 clip[r].width = rand() % (out.width - clip[r].x);
179 clip[r].height = rand() % (out.height - clip[r].y);
183 int x = rand() % (2*out.width) - out.width;
184 int y = rand() % (2*out.height) - out.height;
185 int w = rand() % (2*out.width);
186 int h = rand() % (2*out.height);
187 int tx = rand() % (2*out.width) - out.width;
188 int ty = rand() % (2*out.height) - out.height;
195 fill_rect(&out, alu, clip, nclip,
206 out.draw, out.format,
208 0, 0, out.width, out.height,
216 test_target_destroy_render(&t->out, &out);