Lines Matching defs:hres
415 HRESULT hres = fpCreateDXGIFactory1(&IID_IDXGIFactory1, (void **)&dxgi_factory);
416 if (hres != S_OK) {
480 HRESULT hres = dxgi_factory->lpVtbl->EnumAdapters1(dxgi_factory, j, &adapter);
481 if (hres == DXGI_ERROR_NOT_FOUND) {
483 } else if (hres != S_OK) {
491 hres = adapter->lpVtbl->GetDesc1(adapter, &description);
492 if (hres != S_OK) {
933 HRESULT hres = fpCreateDXGIFactory1(&IID_IDXGIFactory6, (void **)&dxgi_factory);
934 if (hres != S_OK) {
948 hres = dxgi_factory->lpVtbl->EnumAdapterByGpuPreference(dxgi_factory, i, DXGI_GPU_PREFERENCE_UNSPECIFIED,
950 if (hres == DXGI_ERROR_NOT_FOUND) {
952 } else if (hres != S_OK) {
959 hres = adapter->lpVtbl->GetDesc1(adapter, &description);
960 if (hres != S_OK) {
1012 HRESULT hres = fpCreateDXGIFactory1(&IID_IDXGIFactory6, (void **)&dxgi_factory);
1013 if (hres == S_OK) {