mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
i965/tiled_memcpy: Fix rgba8_copy_16_aligned_dst() typo
Copy and paste error in commit eafeb8db66:
i965/tiled_memcpy: Unroll bytes==64 case.
Signed-off-by: Kristian Høgsberg Kristensen <kristian.h.kristensen@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
1af0f0151c
commit
8ec971a997
1 changed files with 4 additions and 4 deletions
|
|
@ -180,10 +180,10 @@ rgba8_copy_aligned_src(void *dst, const void *src, size_t bytes)
|
|||
|
||||
#if defined(__SSSE3__) || defined(__SSE2__)
|
||||
if (bytes == 64) {
|
||||
rgba8_copy_16_aligned_dst(dst + 0, src + 0);
|
||||
rgba8_copy_16_aligned_dst(dst + 16, src + 16);
|
||||
rgba8_copy_16_aligned_dst(dst + 32, src + 32);
|
||||
rgba8_copy_16_aligned_dst(dst + 48, src + 48);
|
||||
rgba8_copy_16_aligned_src(dst + 0, src + 0);
|
||||
rgba8_copy_16_aligned_src(dst + 16, src + 16);
|
||||
rgba8_copy_16_aligned_src(dst + 32, src + 32);
|
||||
rgba8_copy_16_aligned_src(dst + 48, src + 48);
|
||||
return dst;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue