softpipe: Fix typos.

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>
This commit is contained in:
Vinson Lee 2020-12-30 19:59:08 -08:00
parent 9ef2c44ce6
commit 8bec23a91a
3 changed files with 3 additions and 3 deletions

View 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

View 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;

View 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) \