共用方式為


interop::CreateDirect3D11SurfaceFromDXGISurface 函式 (windows.graphics.directx.direct3d11.interop.h)

IDXGISurface建立 IDirect3DSurface 實例。

語法

HRESULT CreateDirect3D11SurfaceFromDXGISurface(
        IDXGISurface *dgxiSurface,
  [out] IInspectable **graphicsSurface
);

參數

dgxiSurface

[out] graphicsSurface

類型:IInspectable**

IDirect3DSurface 實例,包裝 IDXGISurface

傳回值

類型:HRESULT

如果函式成功,它會傳回 S_OK。 否則,它會傳回 HRESULT錯誤碼

言論

雖然我們建議使用 C++/WinRT,但如果您使用 C++/CX,則應該呼叫 CreateDirect3DSurface,而不是 CreateDirect3D11DeviceFromDXGIDevice。 如果您使用 WRL,CreateDirect3D11DeviceFromDXGIDevice,如此程式代碼範例所示。

using namespace Microsoft::WRL;
ComPtr<ABI::Windows::Graphics::DirectX::Direct3D11::IDirect3DSurface> surface;
ComPtr<IInspectable> inspectableSurface;
If (SUCCEEDED(CreateDirect3D11SurfaceFromDXGISurface(dxgiSurface, &inspectableSurface))
{
    hr = inspectableSurface.As(&surface);
}

要求

要求 價值
目標平臺 窗戶
標頭 windows.graphics.directx.direct3d11.interop.h
連結庫 D3D11.lib
DLL D3D11.dll

另請參閱

Core 函式