Home
last modified time | relevance | path

Searched refs:dxgiDevice (Results 1 – 6 of 6) sorted by relevance

/external/angle/src/libANGLE/renderer/d3d/d3d11/win32/
DNativeWindow11Win32.cpp78 IDXGIDevice * dxgiDevice, REFIID iid, void **dcompositionDevice); in createSwapChain()
89 IDXGIDevice *dxgiDevice = d3d11::DynamicCastComObject<IDXGIDevice>(device); in createSwapChain() local
90 HRESULT result = createDComp(dxgiDevice, __uuidof(IDCompositionDevice), in createSwapChain()
92 SafeRelease(dxgiDevice); in createSwapChain()
/external/angle/src/libANGLE/renderer/gl/wgl/
DDXGISwapChainWindowSurfaceWGL.cpp369 IDXGIDevice *dxgiDevice = nullptr; in GetDXGIFactoryFromDevice() local
371 device->QueryInterface(__uuidof(IDXGIDevice), reinterpret_cast<void **>(&dxgiDevice)); in GetDXGIFactoryFromDevice()
378 result = dxgiDevice->GetParent(__uuidof(IDXGIAdapter), reinterpret_cast<void **>(&dxgiAdapter)); in GetDXGIFactoryFromDevice()
379 SafeRelease(dxgiDevice); in GetDXGIFactoryFromDevice()
/external/angle/src/tests/egl_tests/
DEGLDeviceTest.cpp457 IDXGIDevice *dxgiDevice = DynamicCastComObject<IDXGIDevice>(d3d11Device); in TEST_P() local
458 EXPECT_TRUE(dxgiDevice != nullptr); in TEST_P()
459 SafeRelease(dxgiDevice); in TEST_P()
DEGLSurfaceTest.cpp950 typedef HRESULT(WINAPI * PFN_DCOMPOSITION_CREATE_DEVICE2)(IUnknown * dxgiDevice, REFIID iid, in TEST_P()
/external/angle/src/libANGLE/renderer/d3d/d3d11/
Drenderer11_utils.cpp2067 IDXGIDevice *dxgiDevice = nullptr; in GetDeviceType() local
2073 HRESULT hr = device->QueryInterface(__uuidof(IDXGIDevice), (void **)&dxgiDevice); in GetDeviceType()
2076 hr = dxgiDevice->GetParent(__uuidof(IDXGIAdapter), (void **)&dxgiAdapter); in GetDeviceType()
2121 SafeRelease(dxgiDevice); in GetDeviceType()
DRenderer11.cpp594 IDXGIDevice *dxgiDevice = nullptr; in initialize() local
595 result = mDevice->QueryInterface(__uuidof(IDXGIDevice), (void **)&dxgiDevice); in initialize()
602 result = dxgiDevice->GetParent(__uuidof(IDXGIAdapter), (void **)&mDxgiAdapter); in initialize()
610 SafeRelease(dxgiDevice); in initialize()