diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-12-06 06:31:26 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-12-06 06:31:26 +0000 |
| commit | c4a10aae14aafadc267bb32a2edb53185ced008f (patch) | |
| tree | faeb815b35550d65386bf06955686a82483a501c /Graphics/GraphicsEngineD3D11 | |
| parent | Added PlatformMisc and StringTools tests (diff) | |
| download | DiligentCore-c4a10aae14aafadc267bb32a2edb53185ced008f.tar.gz DiligentCore-c4a10aae14aafadc267bb32a2edb53185ced008f.zip | |
Added ADAPTER_TYPE enum and AdapterType member to AdapterAttribs struct (API version 240043)
Diffstat (limited to 'Graphics/GraphicsEngineD3D11')
| -rw-r--r-- | Graphics/GraphicsEngineD3D11/interface/EngineFactoryD3D11.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Graphics/GraphicsEngineD3D11/interface/EngineFactoryD3D11.h b/Graphics/GraphicsEngineD3D11/interface/EngineFactoryD3D11.h index e357bc05..e164d048 100644 --- a/Graphics/GraphicsEngineD3D11/interface/EngineFactoryD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/EngineFactoryD3D11.h @@ -102,7 +102,7 @@ public: IDeviceContext** ppContexts) = 0; - /// Enumerates hardware adapters available on this machine. + /// Enumerates adapters available on this machine. /// \param [in] MinFeatureLevel - Minimum required feature level. /// \param [in,out] NumAdapters - Number of adapters. If Adapters is null, this value @@ -115,15 +115,15 @@ public: /// \param [out] Adapters - Pointer to the array conataining adapter information. If /// null is provided, the number of available adapters is /// written to NumAdapters. - virtual void EnumerateHardwareAdapters(DIRECT3D_FEATURE_LEVEL MinFeatureLevel, - Uint32& NumAdapters, - HardwareAdapterAttribs* Adapters) = 0; + virtual void EnumerateAdapters(DIRECT3D_FEATURE_LEVEL MinFeatureLevel, + Uint32& NumAdapters, + AdapterAttribs* Adapters) = 0; /// Enumerates available display modes for the specified output of the specified adapter. - /// \param [in] MinFeatureLevel - Minimum feature level of the adapter that was given to EnumerateHardwareAdapters(). - /// \param [in] AdapterId - Id of the adapter enumerated by EnumerateHardwareAdapters(). + /// \param [in] MinFeatureLevel - Minimum feature level of the adapter that was given to EnumerateAdapters(). + /// \param [in] AdapterId - Id of the adapter enumerated by EnumerateAdapters(). /// \param [in] OutputId - Adapter output id. /// \param [in] Format - Display mode format. /// \param [in, out] NumDisplayModes - Number of display modes. If DisplayModes is null, this |
