Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
}