Texture filtering
Texture filtering refers to the methods used to smooth the textures of a 3D model. Every home console after the Nintendo 64 is able to do it, including every modern PC and Android device. This makes it useful in emulation, where it can be applied to emulators for consoles that did not originally have it through various emulators that support it.

- This article is about smoothing techniques that may be present even on original hardware. For the process of replacing textures to improve their visual fidelity or other aesthetic reasons, see Texture Packs.
| Console | Texture Filtering | Types of filtering |
|---|---|---|
| Super Nintendo | ✗ | |
| 3DO | ✗ | ? |
| Atari Jaguar | ✗ | |
| Sega Saturn | ✗ | |
| PlayStation | ✗ | |
| Nintendo 64 | ✓ | Three-sample |
| Sega Dreamcast | ✓ | Bilinear, trilinear, anisotropic |
| PlayStation 2 | ✓ | Bilinear, trilinear, Anisotropic |
| GameCube | ✓ | Bilinear, trilinear, anisotropic |
| Xbox | ✓ | Bilinear, trilinear, anisotropic |
| Nintendo DS | ✗ | ? |
| PlayStation Portable | ✓ | Bilinear, trilinear |
| Wii | ✓ | Bilinear, trilinear, anisotropic |
Texture Filtering Algorithms
editThese methods determine how a texture is sampled and displayed on a 3D model in real-time. They are generally native to original hardware or forced via emulator enhancement settings.
| Filtering type | What it does | Pros | Cons |
|---|---|---|---|
| Nearest neighbor | The GPU picks the color of the single closest pixel in the original texture. |
|
|
| Bilinear | Averages the color data of the 4 closest pixels to create a smooth transition. |
|
|
| Trilinear | An extension of Bilinear that interpolates between mipmaps (different resolution versions of the same texture). |
|
|
| Anisotropic (AF) | Enhances texture quality on surfaces viewed at oblique angles (like floors or walls). |
|
|
Texture Scaling Algorithms
edit- For smoothing shaders, see Shaders, presets and filters#Smoothing.
These are enhancement algorithms (often called "upscalers") used by emulators to increase the resolution of textures to look better on modern displays.
| Scaling Algorithm | What it does | Pros | Cons |
|---|---|---|---|
| HQx | A texture scaling algorithm. Scales up a nearest-neighbor version of the texture and fills in the gaps with copies of the pixels next to said gaps. |
|
|
| 2xSaI | A texture scaling algorithm. Scales the texture and fills edges in with a mixture of pixels taken from the source and randomly-guessed colors. |
|
|
| xBR | A modified version of HQx. It detects edges better, which works better for curved lines, or for slopes that are greater than/less than 45 degrees. |
|
|
| xBRZ | A modified version of xBR, which is very similar except it's better at scaling up smaller features consisting of <10 pixels. |
|
|
| MMPX | A texture scaling algorithm. Provides a nearly unfiltered, "Retro Plus" pixel art aesthetic with better handling of rounded and diagonal edges, similar to that found in many indie games. |
|
|
| NNEDI3 | A neural network-based "edge-directed" interpolator. It uses a pre-trained model to predict what missing pixels should look like based on existing edges and structures. |
|
|
| ArtCNN | A lightweight Convolutional Neural Network (CNN) designed for real-time upscaling and artifact removal. It uses machine learning to reconstruct sharp edges and smooth gradients. |
|
|
Emulator Specific
editThese are specific options found in emulators like PPSSPP that modify or combine the methods listed above to achieve better results. PPSSPP has a scaling option known as "Hybrid." There's also an option called "Deposterize." Posterization, meaning a sharp contrast in hue from one pixel to another (very common in low-quality gifs) has been a problem plaguing texture scaling algorithms for quite some time. Durante's filter switches between xBR and bilinear/bicubic filtering depending on the texture information. On top of this, the "Deposterize" option tackles posterization edges in compressed textures, allowing for a smooth gradient rather than a sharp transition. Although it's not perfect (a perfect scaler sadly isn't possible with today's computing power) it's still great and it's recommended to use for PPSSPP if you have the specs.
| Feature | What it does | Pros | Cons |
|---|---|---|---|
| Hybrid / Hybrid + Bicubic | A scaling method that switches between xBR and bilinear/bicubic filtering depending on the texture information. It attempts to detect which parts of a texture need sharp edge enhancement and which are smooth gradients. |
|
|
| Deposterize | A filter that tackles "posterization" (sharp, ugly jumps in color hue common in compressed textures) by smoothing out the transitions into a natural gradient. |
|
|
Images
edit-
PSP game with linear filtering
-
PSP game with nearest neighbor
-
PSP game with 3xBR texture scaling
-
N64 game at native internal resolution (using SoftGraphic plugin)
-
N64 game upscaled with bilinear filtering (using Glide64 plugin)
-
N64 game upscaled with nearest neighbor (using Glide64 plugin)
-
SNES game with nearest neighbor
-
SNES game with linear filtering
-
SNES game with nearest neighbor
-
SNES game with HQ4x texture scaling
-
SNES game with 5xBR texture scaling
Texture filtering hacks
editSome emulators features better texture filtering: enhancement option for providing better texture filtering methods comparing the original hardware had. See;
- Wii emulators#Enhancements
- GameCube emulators#Enhancements
- Dreamcast emulators#Enhancements
- Nintendo 64 emulators#Enhancements
- PlayStation 2 emulators#Enhancements
- Xbox emulators#Enhancements
- Nintendo DS emulators#Enhancements
- PlayStation Portable emulators#Enhancements
sections.
Framebuffer Scaling & Output Methods
edit- Main article: Scaling
Further reading
edit- Forum post from the creator of xBR, explaining how the algorithm works (Warning: is slightly hard to read due to the amount of jargon and big words)
- A blog entry by Durante on creating a hybrid texture filter for PPSSPP.
- The original academic paper explaining the MMPX algorithm (Warning: This is very dense and contains a great deal of jargon)
- Use Game Requested Anisotropic Filtering - Dolphin blog 2025/06/04
- PPSSPP PR: #21527 - NNEDI3 and Spline36 GPU texture scaling