typedef struct D3D12_FEATURE_DATA_FORMAT_INFO { DXGI_FORMAT Format; UINT8 PlaneCount; } D3D12_FEATURE_DATA_FORMAT_INFO; 成员 Format 要返回相关信息的格式 的DXGI_FORMAT类型值。 PlaneCount 要提供信息的平面数。 注解 请参阅 D3D12_FEATURE。 示例 C++ 复制 inline UINT8 D3D12GetFormatPlaneCount...
typedef struct D3D12_FEATURE_DATA_FORMAT_INFO { DXGI_FORMAT Format; UINT8 PlaneCount; } D3D12_FEATURE_DATA_FORMAT_INFO; 成员 Format 要返回相关信息的格式 的DXGI_FORMAT类型值。 PlaneCount 要提供信息的平面数。 注解 请参阅 D3D12_FEATURE。 示例 C++ 复制 inline UINT8 D3D12GetFormatPlaneCount...
inline UINT8 D3D12GetFormatPlaneCount( _In_ ID3D12Device* pDevice, DXGI_FORMAT Format ) { D3D12_FEATURE_DATA_FORMAT_INFO formatInfo{ Format }; if (FAILED(pDevice->CheckFeatureSupport(D3D12_FEATURE_FORMAT_INFO, &formatInfo, sizeof(formatInfo))) { return 0; } return formatInfo.PlaneCount...