Lines Matching defs:bin
30 * Binner data structures and bin-related functions.
98 const struct lp_rast_state *last_state; /* most recent state set in bin */
133 * All bins and bin data are contained here.
134 * Per-bin data goes into the 'tile' bins.
218 struct cmd_bin *bin);
234 * Allocate space for a command/data in the bin's data buffer.
300 /** Return pointer to a particular tile's bin. */
309 /** Remove all commands from a bin */
314 /* Add a command to bin[x][y].
322 struct cmd_bin *bin = lp_scene_get_bin(scene, x, y);
323 struct cmd_block *tail = bin->tail;
330 tail = lp_scene_new_cmd_block(scene, bin);
355 struct cmd_bin *bin = lp_scene_get_bin(scene, x, y);
357 if (state != bin->last_state) {
358 bin->last_state = state;