From f8879fc8e1fc332e93c8f11666b3902047c38760 Mon Sep 17 00:00:00 2001 From: Oliver Pauffley Date: Fri, 30 Jan 2026 13:30:54 +0000 Subject: [PATCH] Fix typos in mipmaps readme Spotted a couple of small typos --- docs/showcase/mipmaps/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/showcase/mipmaps/readme.md b/docs/showcase/mipmaps/readme.md index bf7d0394..e35c19f5 100644 --- a/docs/showcase/mipmaps/readme.md +++ b/docs/showcase/mipmaps/readme.md @@ -1,6 +1,6 @@ # Mipmapping -I games and other graphics applications it's often convenient to +In games and other graphics applications it's often convenient to use a single texture that gets tiled across the surface. If you use a texture with some complexity, and your scene is large you'll get a lot of noise in the distances. @@ -92,7 +92,7 @@ display.queue.write_texture( ); ``` -No if you were to sample this texture as is, you would see a lot +Now if you were to sample this texture as is, you would see a lot of black pixels far away, and the regular texture up close. ![texture with ungenerated mips](./texture-with-ungenerated-mips.png)