17

So far the only tutorials I've been able to find are on directx11tutorials.com, which are essentially inferred from the existing samples. Does anyone know where to find other tutorials, or better yet open source projects using DirectX 11? (Extra points for project code using DirectX 11 :) )

Stefan Valianu
  • 1,370
  • 2
  • 13
  • 24

5 Answers5

7

You might also want to check out

http://www.braynzarsoft.net

Umesh Aawte
  • 4,590
  • 7
  • 41
  • 51
iedoc
  • 2,266
  • 3
  • 30
  • 53
  • 1
    I can only recommend these tutorials. Even though the author sometimes forgets to mark new passages in a highlight color as he did from the start, it goes on pretty quickly. – Ray Mar 24 '14 at 19:59
6

I think there are still no DX11 tutorials / books. If you want to study DirectX in-depth, you could grab some DX10 book and also examine DX11 SDK and MSDN.

There is nothing really new in DirectX 11 (in application architecture / code building principles), so you could examine new API features and (if you're actually proficient with DirectX), getting used to them should not be very hard.

In this case you simply won't need any tutorials.

If you need some actual code samples, this (and other DX11 searches) could probably help you.

M. Williams
  • 4,945
  • 2
  • 26
  • 27
  • I don't remember off the top of my head but I think there are a bunch of new stages in the rendering pipeline (most excitedly the new tessalator), but that might have been my memory of DirectX 10. Thanks for suggesting Google code, I didn't even know that existed! – Stefan Valianu Jun 17 '10 at 15:43
  • Did you mean to write, "getting used to them should *not* be very hard?" – Zan Lynx Jun 17 '10 at 16:04
4

I think if you need a really in-depth understanding of concepts, Frank Luna's book Introduction to 3D Game Programming with DirectX 11 is by far the best book on DirectX 11.

Also there is a good beginner level easy to follow video tutorial series on YouTube here.

Kate
  • 1
  • 1
1

One book that I think is very useful for DirectX11 even if you not doing game programming is Beginning DirectX 11 Game Programming book . Excellent source of information.

Rob Kielty
  • 7,958
  • 8
  • 39
  • 51