From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Fri, 9 Feb 2007 12:21:10 -0500 From: "Russ Cox" To: 9fans <9fans@cse.psu.edu> Subject: Re: [9fans] Page ported to plan9port In-Reply-To: <20070209164443.GA53966@fw.home> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20070208231022.GR30291@fw.home> <0440f47b83dce86a49672ced04bd802d@terzarima.net> <20070209164443.GA53966@fw.home> Topicbox-Message-UUID: 0fd4828c-ead2-11e9-9d60-3106f5b1d025 > >it supports an "inferno" driver out of the box on ubuntu. > >it looks as though it is rgbv. > > Yes, but when I've used the inferno driver, the results have always been > grainy, for some reason. The plan9 driver (in the Plan 9 sources) was tweaked to accomodate the new full-color model, and in the process I made alpha-blended output work a bit better. I suspect that if you added these two lines from gdevplan9.c to gdevifno.c, then the inferno driver would look as good for black-and-white text. if(pdev->color_info.anti_alias.graphics_bits || pdev->color_info.anti_alias.text_bits) if(ldepth < 2) ldepth = 2; All that said, using some more standard format is probably the right answer for page -- I would have chosen png, but bmp is okay. Russ