What does D3DCREATE_SOFTWARE_VERTEXPROCESSING mean?

Started by
3 comments, last by jerrycao_1985 10 years, 2 months ago

Hi all

what does the flag "D3DCREATE_SOFTWARE_VERTEXPROCESSING" mean?

What it tells in the official document is quite limited, just the following line.

Specifies software vertex processing.

So what does it mean by software vertex processing?

Does it mean that all of the vertex shader will be processed by CPU? I've totally no idea of it, however i guess it shouldn't be the case.

Or it will be very slow.

Please give me some pointers on it.

Thanks

Jerry

Advertisement

It means exactly what it says : all the vertex processing will be done on CPU by the software. Typically the CPU isn't as fast as a GPU when processing geometry, on the other hand, it could still work well enough under certain cases.

Cheers!

Does it mean that all of the vertex shader will be processed by CPU?

Yes.

it will be very slow.

Yes!

It's mostly there as an option for compatibility with very old GPUs that don't support vertex shaders.


It's mostly there as an option for compatibility with very old GPUs that don't support vertex shaders.

I also had to use it on some integrated Intel graphical chip which wasn't so old. I don't remember the type.

Thanks for all of the answers, they are very helpful.

This topic is closed to new replies.

Advertisement