Device.DrawRectanglePatch(Int32,Plane) Method (Microsoft.DirectX.Direct3D)

Draws a rectangular patch using the currently set streams.

Definition

Visual Basic Public Sub DrawRectanglePatch( _
    ByVal handle As Integer, _
    ByVal numSegs As Plane _
)
C# public void DrawRectanglePatch(
    int handle,
    Plane numSegs
);
C++ public:
void DrawRectanglePatch(
    int handle,
    Plane numSegs
);
JScript public function DrawRectanglePatch(
    handle : int,
    numSegs : Plane
);

Parameters

handle System.Int32
Handle to the rectangular patch to draw.
numSegs Microsoft.DirectX.Plane
A Plane structure. The A, B, C and D fields identify the number of segments each edge of the rectangle patch should be divided into when tessellated.

Remarks

For static patches, set the vertex shader and the appropriate streams, supply patch information in the param_RectanglePatchInformationR_rectPatchInformation parameter, and specify a handle so that Microsoft Direct3D can capture and cache information. To efficiently draw the patch, call Device.DrawRectanglePatch subsequently without the param_RectanglePatchInformationR_rectPatchInformation parameter. When drawing a cached patch, the currently set streams are ignored. Override the cached param_SingleA_numSegs by specifying a new value for param_SingleA_numSegs. When rendering a cached patch, set the same vertex shader that was set when it was captured.

Calling Device.DrawRectanglePatch with a handle invalidates the same handle cached by a previous Device.DrawTrianglePatch call.

For dynamic patches, the patch data changes for every rendering of the patch, so it is not efficient to cache information. The application can convey this to Direct3D by setting handle to 0. In this case, Direct3D draws the patch using the currently set streams and the param_SingleA_numSegs values, and does not cache any information. It is not valid to simultaneously set param_Int32_handle to 0 and param_RectanglePatchInformationR_rectPatchInformation to null.

Exceptions

ArgumentExceptionLeave Site

The numSegs parameter must be an array of four segments.

InvalidCallException

The method call is invalid. For example, a method's parameter might contain an invalid value.

See Also