Searched refs:max_queue_size (Results 1 - 1 of 1) sorted by relevance

/inkscape/src/ui/tools/
H A Dflood-tool.cpp307 unsigned int max_queue_size; member in struct:Inkscape::UI::Tools::bitmap_coords_info
551 * @param max_queue_size The maximum size of the fill queue.
556 static void push_point_onto_queue(std::deque<Geom::Point> *fill_queue, unsigned int max_queue_size, unsigned char *trace_t, unsigned int x, unsigned int y) { argument
558 if ((fill_queue->size() < max_queue_size)) {
568 * @param max_queue_size The maximum size of the fill queue.
573 static void shift_point_onto_queue(std::deque<Geom::Point> *fill_queue, unsigned int max_queue_size, unsigned char *trace_t, unsigned int x, unsigned int y) { argument
575 if ((fill_queue->size() < max_queue_size)) {
643 push_point_onto_queue(fill_queue, bci.max_queue_size, trace_t, bci.x, top_ty);
662 push_point_onto_queue(fill_queue, bci.max_queue_size, trace_t, bci.x, bottom_ty);
845 bci.max_queue_size
[all...]

Completed in 17 milliseconds