Lines Matching refs:bin
30 * Binner data structures and bin-related functions.
98 const struct lp_rast_state *last_state; /* most recent state set in bin */
122 * All bins and bin data are contained here.
123 * Per-bin data goes into the 'tile' bins.
188 struct cmd_bin *bin );
199 * Allocate space for a command/data in the bin's data buffer.
276 /** Return pointer to a particular tile's bin. */
284 /** Remove all commands from a bin */
289 /* Add a command to bin[x][y].
297 struct cmd_bin *bin = lp_scene_get_bin(scene, x, y);
298 struct cmd_block *tail = bin->tail;
305 tail = lp_scene_new_cmd_block( scene, bin );
330 struct cmd_bin *bin = lp_scene_get_bin(scene, x, y);
332 if (state != bin->last_state) {
333 bin->last_state = state;