Wednesday, December 31, 2014

N64 3-Point Texture Filtering in mupen64plus-libretro

The Nintendo 64 console used a lot of weird hardware that contributed to its distinct look. For example, N64s used bilinear filtering when scaling some textures, similar to how modern GPUs handle texture resizing, but instead of using 4 sampling points like modern hardware, the N64 only used 3 (current texel, upper-left and bottom-right).

Update (12/29/18): I thought it would be helpful to post some text from Nintendo's patent filing regarding the N64's texture filtering:
Texture filter 532 in this example can perform three types of filter operations: point sampling, box filtering, and bilinear interpolation. Point sampling selects the nearest texel to the screen pixel. In the special case where the screen pixel is always the center of four texels, the box filter can be used. In the case of the typical 3-D, arbitrarily rotated polygon, bilinear filtering is generally the best choice available. For hardware cost reduction, display processor texture filter unit 532 does not implement a true bilinear filter. Instead, it linearly interpolates the three nearest texels to produce the result pixels. This has a natural triangulation bias which is not noticeable in normal texture images but may be noticed in regular pattern images. This artifact can be eliminated by prefiltering the texture image with a wider filter.
This caused textures to have a distinctive, hexagonal "rupee" shape:
Image taken by TrekkiesUnite118 on the Sega-16 forums; see the texture pattern on the wall.
When emulating an N64, if you use modern 4-sample bilinear filtering, those textures don't render properly, which can lead to ugly artifacts, like the jagged texture under these stairs in Kakariko Village:
Way back in 2010, there was a discussion on the devmaster forums about reproducing this 3-point sampling in software with some great screenshots and code samples. Then, a couple of years later, ArthurCarvalho posted an HLSL shader that performed the same function on the Emutalk forums.

Skip to 2014 and my friend aliaspider, author of the awesome GTU shader and the guy responsible for porting RetroArch to the PSP (among many other things), ported this HLSL code to GLSL and plopped it into the rendering code for the libretro fork of mupen64plus, where it is applied on a per-texture basis. This clears up many of the texture artifacts typical of N64 emulation and provides that familiar, pointy-textured look:
To my knowledge, no other N64 emulators have implemented this texture filtering option at the time of this writing. Update (9/15/2015): looks like gonetz has added it to his crowdfunded gliden64 plugin.

7 comments:

Anonymous said...

BTW, have you heard about the CEN64 project? Its goal is to create a cycle-accurate N64 emulator!

http://cen64.com/

http://www.youtube.com/user/CEN64Emu/videos

Hunter K. said...

I have! marathonman's been doing some great stuff with it, and I'm excited to see where it goes.

Das Anti Nazi Brötchen said...

I have tried to figure this out for a while but could not find any information about it:
Do you know why the N64 hardware did three-point interpolation instead of four-point?

Hunter K. said...

@Das Anti Nazi Brotchen
I added a note from Nintendo's N64 patent filing that talks about texture filtering and they mention specifically that it was a hardware cost-reduction measure.

Das Anti Nazi Brötchen said...

@Hunter K.
Wow... I wish I had asked you earlier. Thanks so much!
Did you already have all this information at hand? You replied with the patent within 30 minutes!

Hunter K. said...

lol no, but I knew what to look for, which led me to this forum post from 2002 (https://forum.beyond3d.com/threads/n64-bilinear-filtering-hack.2587/), which included a now-dead link to the patent, so I searched for the exact text they had copied from it, and that led me to a current fulltext of the patent.

Das Anti Nazi Brötchen said...

Wow, nice. Thank you!

Analytics Tracking Footer