[ 3 / biz / cgl / ck / diy / fa / ic / jp / lit / sci / vr / vt ] [ index / top / reports ] [ become a patron ] [ status ]
2023-11: Warosu is now out of extended maintenance.

/vr/ - Retro Games

Search:


View post   

>> No.4344189 [View]
File: 64 KB, 564x935, affine.png [View same] [iqdb] [saucenao] [google]
4344189

>>4342810
>>4342885
Here is a picture explaining it. You can probably find more detailed videos online.

>> No.3827768 [View]
File: 64 KB, 564x935, 1458895835291.png [View same] [iqdb] [saucenao] [google]
3827768

>>3827616
I actually found a second version out in the wild. I definitely remember misspelling hardware etc, but my memory is a bit more murky on the interpolation formulas. This one more clearly states the pros and cons.

>> No.3105948 [View]
File: 64 KB, 564x935, matrix.png [View same] [iqdb] [saucenao] [google]
3105948

>>3104968
The PSX graphics pipeline doesn't render perspective correct textures. Hence the wobbles textures. Some people talk about low precision math causing geometry to jitter, but I think it's probably a very minor problem that people mistake for the texturing problem.

>> No.3100587 [View]
File: 64 KB, 564x935, 1458089752806.png [View same] [iqdb] [saucenao] [google]
3100587

>>3100447
Subdividing the hell out of surfaces helped to mitigate the wobbly effects of affine texture mapping.

>> No.3067948 [View]
File: 64 KB, 564x935, texturing.png [View same] [iqdb] [saucenao] [google]
3067948

>>3067779
>Short answer:
To simplify implementation, draw more polygons, and reduce costs.

>Medium answer:
PSX graphics hardware interpolates polygon textures in 2D rather than in 3D in a sense. Textures are interpolated in "screen coordinates" rather than in "perspective correct coordinates". Without going into the math, a picture is worth a 1000 words.

On the left side of the figure is perspective correct texturing. It requires a computationally expensive "perspective divide", which has major repercussions on the design of a graphics pipeline. It's much easier to implement the right side, ignore perspective effects, and just interpolate in 2D. Here I have broken drawing a triangle into applying the texture to 2d triangles, scaling them, shearing them, and finally drawing them. Notice how the visual artifact of wobbly lines arises. This is precisely the thing OP is asking about.

The perspective divide makes things difficult because it can't be implemented as a matrix equation, like everything else. It breaks up your pipeline into before and after divide parts, which necessitates several matrix multiply units. It's not trivial to implement, but clearly is desirable to the point where we are willing to complicate matters to get the effect.

>Long answer:
look in a computer graphics book on how a graphics pipeline is implemented. Perspective divide and homogeneous coordinates are the most complicated part of the whole process.

Navigation
View posts[+24][+48][+96]