Converting Directx 11 project to work on Windows 8.1 Directx 11.2 -


i'm trying run sample project supplied frank luna (introduction 3d game programming directx 11.0). http://www.d3dcoder.net/d3d11.htm

i'm using windows 8.1 windows 8 sdk installed - on visual studio 2012 (as read windows 8.1 sdk includes direct x 11.2).

whenever try run project following build errors:

error   1   error c1083: cannot open include file: 'd3dutil.h': no such file or directory   c:\users\ryan willis\desktop\dvd\code\chapter 14 building first person camera\camera\vertex.h 10  1   camera error   2   error c1083: cannot open include file: 'd3dutil.h': no such file or directory   c:\users\ryan willis\desktop\dvd\code\chapter 14 building first person camera\camera\renderstates.h   10  1   camera error   3   error c1083: cannot open include file: 'd3dutil.h': no such file or directory   c:\users\ryan willis\desktop\dvd\code\chapter 14 building first person camera\camera\effects.h    11  1   camera error   4   error c1083: cannot open include file: 'd3dapp.h': no such file or directory    c:\users\ryan willis\desktop\dvd\code\chapter 14 building first person camera\camera\camerademo.cpp   13  1   camera error   5   error c1083: cannot open include file: 'xnamath.h': no such file or directory   c:\users\ryan willis\desktop\dvd\code\common\waves.h    13  1   camera error   6   error c1083: cannot open include file: 'xnamath.h': no such file or directory   c:\users\ryan willis\desktop\dvd\code\common\mathhelper.h   11  1   camera error   7   error c1083: cannot open include file: 'xnamath.h': no such file or directory   c:\users\ryan willis\desktop\dvd\code\common\lighthelper.h  11  1   camera error   8   error c1083: cannot open include file: 'd3dx11.h': no such file or directory    c:\users\ryan willis\desktop\dvd\code\common\d3dutil.h  13  1   camera error   9   error c1083: cannot open include file: 'd3dx11.h': no such file or directory    c:\users\ryan willis\desktop\dvd\code\common\d3dutil.h  13  1   camera error   10  error c1083: cannot open include file: 'd3dx11.h': no such file or directory    c:\users\ryan willis\desktop\dvd\code\common\d3dutil.h  13  1   camera error   11  error c1083: cannot open include file: 'd3dx11.h': no such file or directory    c:\users\ryan willis\desktop\dvd\code\common\d3dutil.h  13  1   camera 

after more research seems direct 11.1 onwards changed lot of things , e.g. "d3dutil.h" depreciated.

http://blogs.msdn.com/b/jgalasyn/archive/2013/08/06/notes-on-porting-to-directx-11-1-from-earlier-versions.aspx

are there equivilants 'd3dutil.h' - cant find any. how can project run?

thanks,

directx never has d3dutil.h file, seems that's helper class made frank luna, should double check whether have include file in project.


Comments

Popular posts from this blog

PHPMotion implementation - URL based videos (Hosted on separate location) -

javascript - Using Windows Media Player as video fallback for video tag -

c# - Unity IoC Lifetime per HttpRequest for UserStore -