Skip to content

Commit cf34686

Browse files
authored
Fix comment typo in hello_interp.c (#509)
1 parent 0201e5f commit cf34686

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interp/hello_interp/hello_interp.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ void texture_mapping_setup(uint8_t *texture, uint texture_width_bits, uint textu
215215
uint uv_fractional_bits) {
216216
interp_config cfg = interp_default_config();
217217
// set add_raw flag to use raw (un-shifted and un-masked) lane accumulator value when adding
218-
// it to the the lane base to make the lane result
218+
// it to the lane base to make the lane result
219219
interp_config_set_add_raw(&cfg, true);
220220
interp_config_set_shift(&cfg, uv_fractional_bits);
221221
interp_config_set_mask(&cfg, 0, texture_width_bits - 1);
@@ -288,4 +288,4 @@ int main() {
288288
texture_mapping();
289289

290290
return 0;
291-
}
291+
}

0 commit comments

Comments
 (0)