Skip to content

Commit

Permalink
Fix comment typo in hello_interp.c
Browse files Browse the repository at this point in the history
  • Loading branch information
lurch authored Aug 8, 2024
1 parent c95295f commit 36d4877
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interp/hello_interp/hello_interp.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ void texture_mapping_setup(uint8_t *texture, uint texture_width_bits, uint textu
uint uv_fractional_bits) {
interp_config cfg = interp_default_config();
// set add_raw flag to use raw (un-shifted and un-masked) lane accumulator value when adding
// it to the the lane base to make the lane result
// it to the lane base to make the lane result
interp_config_set_add_raw(&cfg, true);
interp_config_set_shift(&cfg, uv_fractional_bits);
interp_config_set_mask(&cfg, 0, texture_width_bits - 1);
Expand Down Expand Up @@ -288,4 +288,4 @@ int main() {
texture_mapping();

return 0;
}
}

0 comments on commit 36d4877

Please sign in to comment.