mirror of
https://github.com/nothings/stb
synced 2024-12-15 12:22:55 +03:00
compile as C
This commit is contained in:
parent
59898db411
commit
3ee97c221f
@ -1393,10 +1393,10 @@ static void stbir__resample_horizontal_upsample(stbir__info* stbir_info, int n,
|
||||
{
|
||||
int in_pixel_index = k * channels;
|
||||
float coefficient = horizontal_coefficients[coefficient_group + coefficient_counter++];
|
||||
int c;
|
||||
|
||||
STBIR__DEBUG_ASSERT(coefficient != 0);
|
||||
|
||||
int c;
|
||||
for (c = 0; c < channels; c++)
|
||||
output_buffer[out_pixel_index + c] += decode_buffer[in_pixel_index + c] * coefficient;
|
||||
}
|
||||
@ -1433,10 +1433,10 @@ static void stbir__resample_horizontal_downsample(stbir__info* stbir_info, int n
|
||||
{
|
||||
int out_pixel_index = k * channels;
|
||||
float coefficient = horizontal_coefficients[coefficient_group + k - n0];
|
||||
int c;
|
||||
|
||||
STBIR__DEBUG_ASSERT(coefficient != 0);
|
||||
|
||||
int c;
|
||||
for (c = 0; c < channels; c++)
|
||||
output_buffer[out_pixel_index + c] += decode_buffer[in_pixel_index + c] * coefficient;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user