Searched refs:dst_pitch (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_yuv.c | 692 if (dst_pitch < row_size) { in SDL_ConvertPixels_ARGB8888_to_YUV() 854 dst = (Uint8*)dst + dst_pitch; in SDL_ConvertPixels_YUV_to_YUV_Copy() 862 dst_pitch = (dst_pitch + 1) / 2; in SDL_ConvertPixels_YUV_to_YUV_Copy() 873 dst_pitch = ((dst_pitch + 1) / 2)*2; in SDL_ConvertPixels_YUV_to_YUV_Copy() 889 dst = (Uint8*)dst + dst_pitch; in SDL_ConvertPixels_YUV_to_YUV_Copy() 906 dst = (Uint8 *)dst + height * dst_pitch; in SDL_ConvertPixels_SwapUVPlanes() 909 int UVpitch = (dst_pitch + 1)/2; in SDL_ConvertPixels_SwapUVPlanes() 972 dst = (Uint8 *)dst + height * dst_pitch; in SDL_ConvertPixels_PackUVPlanes_to_NV() 1046 dst = (Uint8 *)dst + height * dst_pitch; in SDL_ConvertPixels_SplitNV_to_UVPlanes() 1124 dst = (Uint8 *)dst + height * dst_pitch; in SDL_ConvertPixels_SwapNV() [all …]
|
A D | SDL_yuv_c.h | 30 …t, Uint32 src_format, const void *src, int src_pitch, Uint32 dst_format, void *dst, int dst_pitch); 31 …t, Uint32 src_format, const void *src, int src_pitch, Uint32 dst_format, void *dst, int dst_pitch); 32 …t, Uint32 src_format, const void *src, int src_pitch, Uint32 dst_format, void *dst, int dst_pitch);
|
A D | SDL_blit_auto.c | 66 info->dst += info->dst_pitch; in SDL_Blit_RGB888_RGB888_Scale() 115 info->dst += info->dst_pitch; in SDL_Blit_RGB888_RGB888_Blend() 185 info->dst += info->dst_pitch; in SDL_Blit_RGB888_RGB888_Blend_Scale() 216 info->dst += info->dst_pitch; in SDL_Blit_RGB888_RGB888_Modulate() 268 info->dst += info->dst_pitch; in SDL_Blit_RGB888_RGB888_Modulate_Scale() 335 info->dst += info->dst_pitch; in SDL_Blit_RGB888_RGB888_Modulate_Blend() 423 info->dst += info->dst_pitch; in SDL_Blit_RGB888_RGB888_Modulate_Blend_Scale() 466 info->dst += info->dst_pitch; in SDL_Blit_RGB888_BGR888_Scale() 515 info->dst += info->dst_pitch; in SDL_Blit_RGB888_BGR888_Blend() 585 info->dst += info->dst_pitch; in SDL_Blit_RGB888_BGR888_Blend_Scale() [all …]
|
A D | SDL_blit.c | 82 info->dst_pitch = dst->pitch; in SDL_SoftBlit() 84 info->dst_pitch - info->dst_w * info->dst_fmt->BytesPerPixel; in SDL_SoftBlit() 219 map->info.dst_pitch = dst->pitch; in SDL_CalculateBlit()
|
A D | SDL_surface.c | 1255 Uint32 dst_format, void * dst, int dst_pitch) in SDL_ConvertPixels() argument 1267 if (!dst_pitch) { in SDL_ConvertPixels() 1273 …DL_ConvertPixels_YUV_to_YUV(width, height, src_format, src, src_pitch, dst_format, dst, dst_pitch); in SDL_ConvertPixels() 1275 …DL_ConvertPixels_YUV_to_RGB(width, height, src_format, src, src_pitch, dst_format, dst, dst_pitch); in SDL_ConvertPixels() 1277 …DL_ConvertPixels_RGB_to_YUV(width, height, src_format, src, src_pitch, dst_format, dst, dst_pitch); in SDL_ConvertPixels() 1294 dst = (Uint8*)dst + dst_pitch; in SDL_ConvertPixels() 1304 if (!SDL_CreateSurfaceOnStack(width, height, dst_format, dst, dst_pitch, in SDL_ConvertPixels()
|
A D | SDL_blit_copy.c | 103 dstskip = info->dst_pitch; in SDL_BlitCopy()
|
A D | SDL_blit_slow.c | 174 info->dst += info->dst_pitch; in SDL_Blit_Slow()
|
A D | SDL_blit.h | 64 int dst_pitch; member
|
/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_surface.h | 410 void * dst, int dst_pitch);
|
Completed in 28 milliseconds