Windows error 0x887A002D, -2005270483

Detailed Error Information

DXGI_ERROR_SDK_COMPONENT_MISSING[1]

MessageThe application requested an operation that depends on an SDK component that is missing or mismatched.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)true
FacilityCode2170 (0x87a)
NameFACILITY_DXGI[1]
Error Code45 (0x002d)

Questions

3votes
1answer

D3D11CreateDevice 0x887a002d error

First I am learning DirectX 11 from Frank Luna book I came to the part where I need to create the device, but it gives the error: "0x887a002d: The application requested an operation that depends on an SDK component that is missing or mismatched." I kept searching, I tried deferent [...] read more
c++
directx
direct3d
2votes
1answer

D3D11CreateDevice() returns garbage value and fails

I just started studying direct 3d with the book 3D Game Programming with DirectX11. I followed the first tutorial and got a MessageBox saying "D3D11CreateDevice Failed". I checked the return value of this function and got the garbage value of -2005270483. The hexadecimal value of 0x887a002d, which people say it's [...] read more
c++
windows-8.1
directx-11
1vote
0answers

Can't use D3D11 Device Debug flags on Windows Server 2019

I get this error: D3D11CreateDevice: Flags (0x2) were specified which require the D3D11 SDK Layers for Windows 10, but they are not present on the system. These flags must be removed, or the Windows 10 SDK must be installed. Flags include: D3D11_CREATE_DEVICE_DEBUG error: 0x887a002d I've tried: * Installing Graphics Tools [...] read more
windows-10
visual-studio
windows-server-2016
directx
windows-server-2019
1vote
1answer

Windows 10 Mobile Direct3D

I have a C++ project targeted for Windows Phone 8.1 that uses Direct3D11, I tried using that project with Windows 10 Mobile device but at fails in the following line: hr = D3D11CreateDevice(NULL, D3D_DRIVER_TYPE_HARDWARE,NULL, D3D11_CREATE_DEVICE_DEBUG, featureLevels, sizeof(featureLevels) / sizeof(*featureLevels), D3D11_SDK_VERSION, &m_d3dDevice, &featureLevel, NULL); returning error code 0x887A002D -> DXGI_ERROR_SDK_COMPONENT_MISSING, Any [...] read more
windows-phone-8.1
windows-10-mobile
direct3d11on12

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0