struttura CD3D10_TEXTURE1D_DESC (d3d10.h)
Descrive una trama 1D.
Sintassi
struct CD3D10_TEXTURE1D_DESC : D3D10_TEXTURE1D_DESC {
void CD3D10_TEXTURE1D_DESC();
void CD3D10_TEXTURE1D_DESC(
const D3D10_TEXTURE1D_DESC & o
);
void CD3D10_TEXTURE1D_DESC(
DXGI_FORMAT format,
UINT width,
UINT arraySize,
UINT mipLevels,
UINT bindFlags,
D3D10_USAGE usage,
UINT cpuaccessFlags,
UINT miscFlags
);
void ~CD3D10_TEXTURE1D_DESC();
};
Ereditarietà
La struttura CD3D10_TEXTURE1D_DESC implementa D3D10_TEXTURE1D_DESC.
Membri
void CD3D10_TEXTURE1D_DESC()
void CD3D10_TEXTURE1D_DESC( const D3D10_TEXTURE1D_DESC & o)
void CD3D10_TEXTURE1D_DESC( DXGI_FORMAT format, UINT width, UINT arraySize, UINT mipLevels, UINT bindFlags, D3D10_USAGE usage, UINT cpuaccessFlags, UINT miscFlags)
void ~CD3D10_TEXTURE1D_DESC()
Commenti
format
Tipo: DXGI_FORMAT formato trama (vedere DXGI_FORMAT).
width
Tipo: larghezza trama UINT (in texel). L'intervallo è compreso tra 1 e D3D10_REQ_TEXTURE1D_U_DIMENSION (8192).
arraySize
Tipo: numero UINT di trame nella matrice. L'intervallo è compreso tra 1 e D3D10_REQ_TEXTURE1D_ARRAY_AXIS_DIMENSION (512).
mipLevels
Tipo: numero UINT di sottotexture (detti anche livelli mipmap). Usa 1 per una trama multicampionato; o 0 per generare un set completo di sottotexture.
bindFlags
Tipo: Flag UINT (vedere D3D10_BIND_FLAG) per l'associazione alle fasi della pipeline . I flag possono essere combinati da un OR logico.
usage
Tipo: D3D10_USAGE Valore che identifica la modalità di lettura e scrittura della trama. Il valore più comune è D3D10_USAGE-DEFAULT; vedere D3D10_USAGE per tutti i valori possibili.
cpuAccessFlags
Tipo: Flag UINT (vedere D3D10_CPU_ACCESS_FLAG) per specificare i tipi di accesso alla CPU consentiti. Usare 0 se l'accesso alla CPU non è necessario. Questi flag possono essere combinati con un OR logico.
miscFlags
Tipo: flag UINT (vedere D3D10_RESOURCE_MISC_FLAG) che identificano altre opzioni di risorse meno comuni. Usare 0 se non si applica nessuno di questi flag. Questi flag possono essere combinati con un OR logico.
Questa struttura viene usata in una chiamata a ID3D10Device::CreateTexture1D. Una struttura derivata utile CD3D10_TEXTURE1D_DESC viene dichiarata in D3D10.h per creare una descrizione della trama.
Requisiti
Requisito | Valore |
---|---|
Intestazione | d3d10.h |