From 2104135f38c7127c9d18769010520da0d5d049b3 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 16 Feb 2021 18:58:39 -0500 Subject: [PATCH] nir: Fix grammar error Signed-off-by: Alyssa Rosenzweig Reviewed-by: Jason Ekstrand Part-of: --- src/compiler/nir/nir_intrinsics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/nir/nir_intrinsics.py b/src/compiler/nir/nir_intrinsics.py index 0a3925a3263..407753a6fd4 100644 --- a/src/compiler/nir/nir_intrinsics.py +++ b/src/compiler/nir/nir_intrinsics.py @@ -815,8 +815,8 @@ system_value("user_data_amd", 4) # These set up the barycentric coordinates for a particular interpolation. # The first four are for the simple cases: pixel, centroid, per-sample # (at gl_SampleID), or pull model (1/W, 1/I, 1/J) at the pixel center. The next -# three two handle interpolating at a specified sample location, or -# interpolating with a vec2 offset, +# two handle interpolating at a specified sample location, or interpolating +# with a vec2 offset, # # The interp_mode index should be either the INTERP_MODE_SMOOTH or # INTERP_MODE_NOPERSPECTIVE enum values.