D3DXRectPatchSize function

Gets the size of the rectangle patch.

Syntax

HRESULT D3DXRectPatchSize(
  _In_  const FLOAT *pfNumSegs,
  _Out_       DWORD *pdwTriangles,
  _Out_       DWORD *pwdVertices
);

Parameters

pfNumSegs [in]

Type: const FLOAT*

Number of segments per edge to tessellate.

pdwTriangles [out]

Type: DWORD*

Pointer to a DWORD that contains the number of triangles in the patch.

pwdVertices [out]

Type: DWORD*

Pointer to a DWORD that contains the number of vertices in the patch.

Return value

Type: HRESULT

If the function succeeds, the return value is D3D_OK. If the function fails, the return value can be one of the following: D3DERR_INVALIDCALL, E_OUTOFMEMORY.

Requirements

Requirement Value
Header
D3DX9Mesh.h
Library
D3dx9.lib

See also

Mesh Functions

D3DXTessellateRectPatch