D3DRECT

This structure defines a rectangle.

typedef struct _D3DRECT {
  LONG x1;
  LONG y1;
  LONG x2;
  LONG y2;
} D3DRECT;

Members

  • x1 and y1
    Coordinates of the upper-left corner of the rectangle.
  • x2 and y2
    Coordinates of the lower-right corner of the rectangle.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: D3d8types.h.

See Also

IDirect3DDevice8::Clear | Direct3D Structures

 Last updated on Thursday, April 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.