From 8bec23a91a09a5cdf2aefe15e987e3bf9fdd4994 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Wed, 30 Dec 2020 19:59:08 -0800 Subject: [PATCH] softpipe: Fix typos. Signed-off-by: Vinson Lee Reviewed-by: Adam Jackson Part-of: --- src/gallium/drivers/softpipe/sp_context.c | 2 +- src/gallium/drivers/softpipe/sp_image.c | 2 +- src/gallium/drivers/softpipe/sp_tile_cache.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index d82e996bffc..a633a43a431 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -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 diff --git a/src/gallium/drivers/softpipe/sp_image.c b/src/gallium/drivers/softpipe/sp_image.c index f92b39df14e..fb97e66547d 100644 --- a/src/gallium/drivers/softpipe/sp_image.c +++ b/src/gallium/drivers/softpipe/sp_image.c @@ -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; diff --git a/src/gallium/drivers/softpipe/sp_tile_cache.c b/src/gallium/drivers/softpipe/sp_tile_cache.c index 54814ca4fc2..81121d49fdb 100644 --- a/src/gallium/drivers/softpipe/sp_tile_cache.c +++ b/src/gallium/drivers/softpipe/sp_tile_cache.c @@ -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) \