ID3DXBaseMesh::GetAttributeTable method
Retrieves either an attribute table for a mesh, or the number of entries stored in an attribute table for a mesh.
Syntax
HRESULT GetAttributeTable(
[in, out] D3DXATTRIBUTERANGE *pAttribTable,
[in, out] DWORD *pAttribTableSize
);
Parameters
-
pAttribTable [in, out]
-
Type: D3DXATTRIBUTERANGE*
Pointer to an array of D3DXATTRIBUTERANGE structures, representing the entries in the mesh's attribute table. Specify NULL to retrieve the value for pAttribTableSize.
-
pAttribTableSize [in, out]
-
Type: DWORD*
Pointer to either the number of entries stored in pAttribTable or a value to be filled in with the number of entries stored in the attribute table for the mesh.
Return value
Type: HRESULT
If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be D3DERR_INVALIDCALL.
Remarks
An attribute table is created by ID3DXMesh::Optimize and passing D3DXMESHOPT_ATTRSORT for the Flags parameter.
An attribute table is used to identify areas of the mesh that need to be drawn with different textures, render states, materials, and so on. In addition, the application can use the attribute table to hide portions of a mesh by not drawing a given attribute identifier when drawing the frame.
Requirements
Requirement | Value |
---|---|
Header |
|
Library |
|
See also