Hacker News new | ask | show | jobs
by theevilsharpie 960 days ago
> Personally, I prefer https://github.com/Novum/vkQuake because it allows disabling texture smoothing.

All hardware-accelerated Quake source ports that I'm aware of allow you to disable texture smoothing, going all the way back to the original GL Quake (if not earlier).

It was historically set through the console (rather than through a graphical menu), via the `gl_texturemode` command

On modern hardware capable of trilinear filtering, the appropriate texturemode to disable texture smoothing (which keeping the other niceties of hardware acceleration) was

```

gl_texturemode "GL_NEAREST_MIPMAP_LINEAR"

```

For the Ironwail engine, which is the currently preferred Quake source port for modern 3D hardware, options on whether or not to use texture smoothing (and other "retro" aesthetics like whether to use square or circular particles) are things that can be toggled in the video configuration menu.