The document discusses different algorithms for filling polygons in computer graphics, including boundary fill, flood fill, and scan line algorithms. Boundary fill uses seed points and recursively colors neighboring pixels of the same color until it reaches the boundary. Flood fill replaces all pixels of a given color within a shape with a new color. Scan line filling intersects horizontal lines with polygon edges to determine which pixels to color between intersections.