function drawFastVLine(x0, y0, height, color) {
    for (var y = y0; y < y0+height; y++)
        drawPixel(x0, y, color);
}