D3D Copying to Surfaces (Direct3D 9)

来源:互联网 发布:思迅v7连接不到数据库 编辑:程序博客网 时间:2024/06/10 04:23
 

Copying to Surfaces (Direct3D 9)

When using IDirect3DDevice9::UpdateSurface, pass a rectangle on the source surface, or use NULL to specify the entire surface. You also pass a point on the destination surface to which the upper left position of the rectangle on the source image is copied. This method does not support clipping. The operation will fail unless the source rectangle and the corresponding destination rectangle are completely contained within the source and destination surfaces respectively. This method does not support alpha blending, color keys, or format conversion. Note that the destination and source surfaces must be distinct.

For other restrictions when using UpdateSurface, see IDirect3DDevice9::UpdateSurface.

The following methods are also available in C++/C for copying images to a Direct3D surface.

  • D3DXLoadSurfaceFromFile
  • D3DXLoadSurfaceFromFileInMemory
  • D3DXLoadSurfaceFromMemory
  • D3DXLoadSurfaceFromResource
  • D3DXLoadSurfaceFromSurface
  • IDirect3DDevice9::UpdateSurface

UpdateSurface Example

The following example copies two rectangles from the source surface to a destination surface. The first rectangle is copied from (0, 0, 50, 50) on the source surface to the same location on the destination surface, and the second rectangle is copied from (50, 50, 100, 100) on the source surface to (150, 150, 200, 200) on the destination surface.

//The following assumptions are made:// -d3dDevice is a valid Direct3DDevice9 object.// -pSource and pDest are valid IDirect3DSurface9 pointers.RECT  rcSource[] = {  0,  0,  50,  50,                     50, 50, 100, 100 };POINT ptDest[]   = {  0,  0, 150, 150 };d3dDevice->UpdateSurface( pSource, rcSource, 2, pDest, ptDest);

See Also

IDirect3DDevice9::StretchRect

原创粉丝点击