Home | History | Annotate | Download | only in llvmpipe

Lines Matching refs:tile

5 struct tile {
114 static void plot(struct tile *tile,
119 if (tile->data[x][y] == ' ')
120 tile->coverage++;
122 tile->overdraw++;
124 tile->data[x][y] = val;
135 struct tile *tile,
142 if (!tile->state)
145 blend = tile->state->variant->key.blend.rt[0].blend_enable;
152 plot(tile, i, j, val, blend);
160 struct tile *tile,
167 plot(tile, i, j, val, FALSE);
177 struct tile *tile,
187 boolean blend = tile->state->variant->key.blend.rt[0].blend_enable;
210 plot(tile, x, y, val, blend);
231 do_debug_bin( struct tile *tile,
241 memset(tile->data, ' ', sizeof tile->data);
242 tile->coverage = 0;
243 tile->overdraw = 0;
244 tile->state = NULL;
248 boolean blend = is_blend(tile->state, block, k);
256 tile->state = block->arg[k].state;
260 count = debug_clear_tile(tx, ty, block->arg[k], tile, val);
264 count = debug_shade_tile(tx, ty, block->arg[k], tile, val);
273 count = debug_triangle(tx, ty, block->arg[k], tile, val);
290 struct tile tile;
294 do_debug_bin(&tile, bin, TRUE);
299 debug_printf("%c", tile.data[y][x]);
306 ((float)tile.overdraw + tile.coverage)/(float)tile.coverage);
348 struct tile tile;
353 do_debug_bin(&tile, bin, FALSE);
355 total += tile.coverage;
358 if (tile.coverage == 64*64)
360 else if (tile.coverage) {
361 int bit = tile.coverage/(64.0*64.0)*10;
378 debug_printf("this tile total: %u possible %u: percentage: %f\n",