From dde4f9969cec14b9763af048692555115640ecd5 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 6 Jun 2022 14:05:07 -0600 Subject: [PATCH] llvmpipe: fix comment typo in lp_bld_interp.h Signed-off-by: Brian Paul Reviewed-by: Roland Scheidegger Part-of: --- src/gallium/drivers/llvmpipe/lp_bld_interp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/llvmpipe/lp_bld_interp.h b/src/gallium/drivers/llvmpipe/lp_bld_interp.h index 6525ffb0bf0..c13a2055dbb 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_interp.h +++ b/src/gallium/drivers/llvmpipe/lp_bld_interp.h @@ -70,7 +70,7 @@ struct lp_shader_input { uint interp:4; /* enum lp_interp */ uint usage_mask:4; /* bitmask of TGSI_WRITEMASK_x flags */ uint src_index:8; /* where to find values in incoming vertices */ - uint location:2; /* TGSI_INTERPOLOATE_LOC_* */ + uint location:2; /* TGSI_INTERPOLATE_LOC_* */ uint padding:14; };