2005-12-16

 

Reading DX10 docs...

Reading DirectX10 preview documentation right now (you know, it's released with Dec2005 SDK). It is pretty impressive, I must say! Seems like a huge leap forward. Back to reading!

Comments
I just can't wait to write geometry shaders :).
 
Yeah, GS is a very interesting piece...

Though I can't really imagine how the hardware will be able to pipeline everything efficiently (when each input primitive can end up with variable number of primitives).

The possibility to do this is great, but I think most of the interesting scenarios will be pretty slow as well. Of course, "slow" is a relative term (i.e. it'll probably be faster than the alternative methods of doing the same thing)
 
Well that works pretty well for PS2 :) ('well' is a relative term of course)

I suppose gpu already has very deep pipelines, plus you will specify your maximum amount of vertices statically - so gpu can schedule its work ahead pretty well.

And probably :) it's not impossible for gpu to have more than one independent vertex pipe running at the same time.

Or VS/GS could be linked into the one uber-shader underneath (much like PS2 vu1 code) and executed in the same block - could be no worries about the VS stalls then.

Kris: no need to wait - go write vu code :)
 
ReJ: if VS+GS would end up as a single piece of hardware, then why would it be exposed as two separate stages?

Analogy with PS2 makes sense though :)
 
NeAraz: why separate VS/GS, let's do some wild guessing here:
a) easier to program I suppose, backward compatible in some sense (easier to reuse legacy vshaders)
b) maybe easier for compiler to schedule
c) more options for underlying hardware - could be one block, or could be separate blocks, but with 'multithreading' to hide stalls
d) ... something really important
 
ReJ: I'd rather wait for a first dx10 card. Besides, now I have one game project at work, one at home and university :).
 
Post a Comment

<< Home