Fix various typos with codespell

Using 2.2.7.dev217+g10c2abcf.

Had to add `colour` to the ignore list as we used it as an alias/keyword for the
documentation of color-related APIs.
Also ignore recommendations to change `thirdparty` to either `third-party` or
`third party`, which are correct but we use the former fairly consistently.
This commit is contained in:
Rémi Verschelde 2024-05-07 10:05:42 +02:00
parent 107fd30ae7
commit 4b070e8031
No known key found for this signature in database
GPG key ID: C3336907360768E1
16 changed files with 33 additions and 33 deletions

View file

@ -76,7 +76,7 @@ void main() {
vec2 uv = uv_interp;
#endif
// Input is standardised. R for X, G for Y, 0.0 (0) = 1, 0.33 (85) = 2, 0.66 (170) = 3, 1.0 (255) = 8
// Input is standardized. R for X, G for Y, 0.0 (0) = 1, 0.33 (85) = 2, 0.66 (170) = 3, 1.0 (255) = 8
vec4 color = textureLod(source_color, uv, 0.0);
// Output image shading rate image for VRS according to VK_KHR_fragment_shading_rate.