softpipe: Fix typos.
authorVinson Lee <vlee@freedesktop.org>
Thu, 31 Dec 2020 03:59:08 +0000 (19:59 -0800)
committerVinson Lee <vlee@freedesktop.org>
Sun, 3 Jan 2021 00:39:22 +0000 (16:39 -0800)
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8279>

src/gallium/drivers/softpipe/sp_context.c
src/gallium/drivers/softpipe/sp_image.c
src/gallium/drivers/softpipe/sp_tile_cache.c

index d82e996..a633a43 100644 (file)
@@ -358,7 +358,7 @@ softpipe_create_context(struct pipe_screen *screen,
    sp_init_surface_functions(softpipe);
 
 #if DO_PSTIPPLE_IN_HELPER_MODULE
-   /* create the polgon stipple sampler */
+   /* create the polygon stipple sampler */
    softpipe->pstipple.sampler = util_pstipple_create_sampler(&softpipe->pipe);
 #endif
 
index f92b39d..fb97e66 100644 (file)
@@ -175,7 +175,7 @@ get_dimensions(const struct pipe_image_view *iview,
       else
          *depth = spr->base.array_size;
 
-      /* Make sure the resource and view have compatiable formats */
+      /* Make sure the resource and view have compatible formats */
       if (util_format_get_blocksize(pformat) >
           util_format_get_blocksize(spr->base.format))
          return false;
index 54814ca..81121d4 100644 (file)
@@ -45,7 +45,7 @@ sp_alloc_tile(struct softpipe_tile_cache *tc);
 /**
  * Return the position in the cache for the tile that contains win pos (x,y).
  * We currently use a direct mapped cache so this is like a hack key.
- * At some point we should investige something more sophisticated, like
+ * At some point we should investigate something more sophisticated, like
  * a LRU replacement policy.
  */
 #define CACHE_POS(x, y, l)                        \