Searched defs:dst_pitch (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/
H A Dmga_drm.h400 int src_pitch, dst_pitch; member in struct:_drm_mga_blit
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dsurface.c733 int dst_pitch = 0; local
745 dst_pitch = IWineD3DSurface_GetPitch((IWineD3DSurface *) This);
826 TRACE("(%p) : Repacking the surface data from pitch %d to pitch %d\n", This, src_pitch, dst_pitch);
830 dst_data += dst_pitch;
831 memcpy(dst_data, src_data, dst_pitch);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dsurface.c2434 int dst_pitch = 0; local
2447 dst_pitch = wined3d_surface_get_pitch(surface);
2534 TRACE("(%p) : Repacking the surface data from pitch %d to pitch %d\n", surface, src_pitch, dst_pitch);
2537 memcpy(dst_data, src_data, dst_pitch);
2539 dst_data += dst_pitch;
6356 UINT src_pitch, dst_pitch; local
6363 dst_pitch = width * byte_count;
6364 dst_pitch = (dst_pitch + device->surface_alignment - 1) & ~(device->surface_alignment - 1);
6366 if (!(mem = HeapAlloc(GetProcessHeap(), 0, dst_pitch * heigh
6400 UINT width, src_pitch, dst_pitch; local
6931 surface_cpu_blt_compressed(const BYTE *src_data, BYTE *dst_data, UINT src_pitch, UINT dst_pitch, UINT update_w, UINT update_h, const struct wined3d_format *format, DWORD flags, const WINEDDBLTFX *fx) argument
[all...]

Completed in 62 milliseconds