From c4a10aae14aafadc267bb32a2edb53185ced008f Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Thu, 5 Dec 2019 22:31:26 -0800 Subject: Added ADAPTER_TYPE enum and AdapterType member to AdapterAttribs struct (API version 240043) --- Graphics/GraphicsEngineD3D12/interface/EngineFactoryD3D12.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Graphics/GraphicsEngineD3D12') diff --git a/Graphics/GraphicsEngineD3D12/interface/EngineFactoryD3D12.h b/Graphics/GraphicsEngineD3D12/interface/EngineFactoryD3D12.h index b02deaa0..75058c31 100644 --- a/Graphics/GraphicsEngineD3D12/interface/EngineFactoryD3D12.h +++ b/Graphics/GraphicsEngineD3D12/interface/EngineFactoryD3D12.h @@ -117,15 +117,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 -- cgit v1.2.3