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

/vbox/src/VBox/Additions/common/crOpenGL/
H A Ddri_drv.c192 GLint dstx, GLint dsty, GLenum type)
190 vboxDDCopyPixels(GLcontext *ctx, GLint srcx, GLint srcy, GLsizei width, GLsizei height, GLint dstx, GLint dsty, GLenum type) argument
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dsurface_base.c1616 * dstx:
1626 HRESULT WINAPI IWineD3DBaseSurfaceImpl_BltFast(IWineD3DSurface *iface, DWORD dstx, DWORD dsty, argument
1643 TRACE("(%p)->(%d,%d,%p,%p,%08x)\n", This,dstx,dsty,Src,rsrc,trans);
1690 if (w > This->currentDesc.Width-dstx) w = This->currentDesc.Width-dstx;
1700 lock_dst.left = dstx;
1702 lock_dst.right = dstx + w;
1750 if (dstx || dsty)
H A Dsurface.c4432 static HRESULT WINAPI IWineD3DSurfaceImpl_BltFast(IWineD3DSurface *iface, DWORD dstx, DWORD dsty, argument
4440 TRACE("(%p)->(%d, %d, %p, %p, %08x\n", iface, dstx, dsty, Source, rsrc, trans);
4469 DstRect.left = dstx;
4471 DstRect.right = dstx + SrcRect.right - SrcRect.left;
4499 hr = IWineD3DBaseSurfaceImpl_BltFast(iface, dstx, dsty, Source, rsrc, trans);

Completed in 57 milliseconds