ID3D11Device2::GetResourceTiling Method

Gets info about how a tiled resource is broken into tiles.

Syntax

public:
void GetResourceTiling(
         ID3D11Resource *pTiledResource,
         UINT *pNumTilesForEntireResource,
         D3D11_PACKED_MIP_DESC *pPackedMipDesc,
         D3D11_TILE_SHAPE *pStandardTileShapeForNonPackedMips,
         UINT *pNumSubresourceTilings,
         UINT FirstSubresourceTilingToGet,
         D3D11_SUBRESOURCE_TILING *pSubresourceTilingsForNonPackedMips
)  

Parameters

pTiledResource
Type: ID3D11Resource *

[in] A pointer to the tiled resource (ID3D11Resource) to get info about.

pNumTilesForEntireResource
Type: UINT *

[out, optional] A pointer to a variable that receives the number of tiles needed to store the entire tiled resource.

pPackedMipDesc
Type: D3D11_PACKED_MIP_DESC *

[out, optional] A pointer to a D3D11_PACKED_MIP_DESC structure that GetResourceTiling fills with info about how the tiled resource’s mipmaps are packed.

pStandardTileShapeForNonPackedMips
Type: D3D11_TILE_SHAPE *

[out, optional] A pointer to a D3D11_TILE_SHAPE structure that GetResourceTiling fills with info about the tile shape. This is info about how pixels fit in the tiles, independent of tiled resource’s dimensions, not including packed mipmaps. If the entire tiled resource is packed, this parameter is meaningless because the tiled resource has no defined layout for packed mipmaps. In this situation, GetResourceTiling sets the members of D3D11_TILE_SHAPE to zeros.

pNumSubresourceTilings
Type: UINT *

[in, out, optional] A pointer to a variable that contains the number of tiles in the subresource. On input, this is the number of subresources to query tilings for; on output, this is the number that was actually retrieved at pSubresourceTilingsForNonPackedMips (clamped to what’s available).

FirstSubresourceTilingToGet
Type: UINT 

[in] The number of the first subresource tile to get. GetResourceTiling ignores this parameter if the number that pNumSubresourceTilings points to is 0.

pSubresourceTilingsForNonPackedMips
Type: D3D11_SUBRESOURCE_TILING *

[out] A pointer to a D3D11_SUBRESOURCE_TILING structure that GetResourceTiling fills with info about subresource tiles.

If subresource tiles are part of packed mipmaps, GetResourceTiling sets the members of D3D11_SUBRESOURCE_TILING to zeros, except the StartTileIndexInOverallResource member, which GetResourceTiling sets to D3D11_PACKED_TILE (0xffffffff). The D3D11_PACKED_TILE constant indicates that the whole D3D11_SUBRESOURCE_TILING structure is meaningless for this situation, and the info that the pPackedMipDesc parameter points to applies.

Return value

None.

Requirements

Header: Declared in d3d11_x.h (d3d11_2.h in other Windows platforms).

Library: Use d3d11_x.lib (d3d11.lib in other Windows platforms).

See also

ID3D11Device2

ID3D11Device2 Members