DeanoC said:Err just about every XBox title since release uses normal mapping (including at least Halo 1 and Shrek 1).
Now if your talking 'Appearance Preserving Simplification' then maybe...
And yes I am going to correct you everytime until you get it right.
DeanoC said:You shouldn't be using linear filtering to filter normal maps.
I know we all do but its still bad even when the signs are the same, de-normalization causes lots of visible artifacts.
Ostsol said:Well, it's true that there'll be no denormalization since the z-component is derived based on the assumption that x and y are part of a normalized vec3. . . However, the error is always there. Assume, for example, that one is working with normalized vec2. Interpolating between two vec2s will have a denormalized result. Of course, one can simply renormalize a vec2, but when we're trying to derive a third component this is not possible. As such, the result may be a normalized vec3, but it is still derived from an error.
I can agree with that.darkblu said:objectively speaking you're right - interpolating as vec2 and then deriving the 3rd component such that the norm of the vec3 is 1 is definitely not the mathematically-correct way, yet i doubt it would produce visually-noticible errors (no denormalities), thus would be acceptable for game purposes.
How would it determine that? Perhaps for the fixed function pipeline that'd be feasible, but probably not for the programmable pipeline. A special texture lookup op might do the trick -- but rather than crowd the API much more, I think a new texture filtering method would be a better idea. Perhaps. . . cubic interpolation?of course, it would have been so much nicer if hw did the re-normalisation when sampling from a source to a dot3 operation...
ninelven said:My bad. Yes, I was wrong. What you said was what I meant. I guess I should correct the earlier part as well - The Chronicles of Riddick: Escape from Butcher Bay. Didn't mean to piss in your cheerios...
DeanoC said:The are lots of bad information on the net and being a bit pendantic might help a few people understand whats actually being talked about.
DeanoC said:You shouldn't be using linear filtering to filter normal maps.
I know we all do but its still bad even when the signs are the same, de-normalization causes lots of visible artifacts.
DeanoC said:Err just about every XBox title since release uses normal mapping (including at least Halo 1 and Shrek 1).
Now if your talking 'Appearance Preserving Simplification' then maybe...
Laa-Yosh said:Deus Ex 2 and Thief 3 are also using normal mapping, on (almost) every surface, combined with stencil shadows. They just did not get the source art and the engine speed to the levels of Riddick, as it seems...