mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 08:27:31 +09:00
Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends
Required for upcoming libyuv update
This commit is contained in:
parent
c0c76cd455
commit
42f3296899
19 changed files with 431 additions and 451 deletions
|
|
@ -10,7 +10,7 @@ namespace gfx {
|
|||
|
||||
// FilterRows combines two rows of the image using linear interpolation.
|
||||
// SSE2 version does 16 pixels at a time.
|
||||
void FilterRows_SSE2(uint8* ybuf, const uint8* y0_ptr, const uint8* y1_ptr,
|
||||
void FilterRows_SSE2(uint8_t* ybuf, const uint8_t* y0_ptr, const uint8_t* y1_ptr,
|
||||
int source_width, int source_y_fraction) {
|
||||
__m128i zero = _mm_setzero_si128();
|
||||
__m128i y1_fraction = _mm_set1_epi16(source_y_fraction);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue