Searched defs:dstwidth (Results 1 - 3 of 3) sorted by relevance
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
H A D | surface_base.c | 981 int bpp, srcheight, srcwidth, dstheight, dstwidth, width; local 1219 dstwidth = xdst.right - xdst.left; 1252 ret = _Blt_ColorFill(dbuf, dstwidth, dstheight, bpp, 1267 ret = _Blt_ColorFill(dbuf,dstwidth,dstheight,bpp,dlock.Pitch,0); 1272 ret = _Blt_ColorFill(dbuf,dstwidth,dstheight,bpp,dlock.Pitch,~0); 1292 if (!dstwidth || !dstheight) /* hmm... stupid program ? */ 1295 xinc = (srcwidth << 16) / dstwidth; 1301 if (dstwidth == srcwidth) 1370 for (x = sx = 0; x < dstwidth; x++, sx += xinc) \ 1383 for (x = sx = 0; x < dstwidth; [all...] |
/vbox/src/VBox/Main/src-client/ |
H A D | ConsoleVRDPServer.cpp | 438 const uint32_t dstwidth = 32; local 443 uint32_t dstmaskwidth = (dstwidth + 7) / 8; 448 uint32_t rdpdatawidth = dstwidth * 3; 469 uint32_t minwidth = RT_MIN(width - xSkip, dstwidth); 513 pointer->u16Width = (uint16_t)dstwidth; 519 dumpPointer((uint8_t*)pointer + sizeof(*pointer), dstwidth, dstheight, false);
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/ |
H A D | surface.c | 7037 int bpp, srcheight, srcwidth, dstheight, dstwidth, width; local 7088 dstwidth = dst_rect->right - dst_rect->left; 7113 if (srcheight != dstheight || srcwidth != dstwidth) 7135 src_map.row_pitch, dst_map.row_pitch, dstwidth, dstheight, 7143 hr = _Blt_ColorFill(dbuf, dstwidth, dstheight, bpp, dst_map.row_pitch, fx->u5.dwFillColor); 7157 hr = _Blt_ColorFill(dbuf, dstwidth, dstheight, bpp, dst_map.row_pitch, 0); 7162 hr = _Blt_ColorFill(dbuf, dstwidth, dstheight, bpp, dst_map.row_pitch, ~0U); 7181 if (!dstwidth || !dstheight) /* Hmm... stupid program? */ 7185 && (srcwidth != dstwidth || srcheight != dstheight)) 7191 xinc = (srcwidth << 16) / dstwidth; [all...] |
Completed in 75 milliseconds