Represents a rectangle and provides convenience methods for creating rectangles.
struct CD3D11_RECT : public D3D11_RECT
Here is how D3D11.h defines CD3D11_RECT:
struct CD3D11_RECT : public D3D11_RECT
{
CD3D11_RECT()
{}
explicit CD3D11_RECT( const D3D11_RECT& o ) :
D3D11_RECT( o )
{}
explicit CD3D11_RECT(
LONG Left,
LONG Top,
LONG Right,
LONG Bottom )
{
left = Left;
top = Top;
right = Right;
bottom = Bottom;
}
~CD3D11_RECT() {}
operator const D3D11_RECT&() const { return *this; }
};
Header: Declared in d3d11_x.h (d3d11.h on other Windows platforms).
Library: Use d3d11_x.lib (d3d11.lib on other Windows platforms).