Re: [xmoto-dev] SDL_gfx help |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/xmoto-dev Archives
]
- To: xmoto-dev@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [xmoto-dev] SDL_gfx help
- From: "Rasmus Neckelmann" <neckelmann@xxxxxxxxx>
- Date: Wed, 24 Jan 2007 12:33:47 +0100
- Cc: daniel_on_go@xxxxxxxxxxxx
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=qvV91HZTd1e9GjoBANZB7eqLUPRyQCNduWrzPNntxxX29RUmKI6O7Uq/wX7KYBiygvd9sABDoWJ31FY/kI+D/Qj4yIUxZvZzKY6H+DAw+lWdK3KdPtXE8R/9fBuyMRxH26E1ADIUrxrUSDrkZdFfUxr5fJtvaB6RXZvBE7oyvnc=
On 1/21/07, Kees Jongenburger <kees.jongenburger@xxxxxxxxx> wrote:
So given the input texture , the texture coordinates and the vertex
coordinates I want to define a transformation on the base image. we
are in 2d space and do not perform squeaking. The transformations that
are possible are scaling,rotating and flipping .
I'm not sure I understand your problem correctly... Ideally it should
be possible to draw any textured polygon, not knowing about
transformations or anything. I don't know about SDL_gfx, but making
such a drawing function should be quite basic - interpolate the x
(screen) coordinate and the u,v (texture) coordinates over the edges
of the polygon, and then render the horizontal lines of the polygon
(with interpolated u,v coordinates). Nice thing about x-moto is that
no perspective correction or shading is required - i.e. it can be
implemented quite efficiently in plain c/c++ (even with no asm).
Sub-pixel accuracy (or texture filtering) is probably not required
either, if it just has to be fast.
Actually I thought SDL_gfx provided such functions?
--
Rasmus Neckelmann