Finally, a DirectX 10 video driver for Irrlicht

Announce new projects or updates of Irrlicht Engine related tools, games, and applications.
Also check the Wiki
robmar
Posts: 1125
Joined: Sun Aug 14, 2011 11:30 pm

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by robmar »

Its the shader that handles EMT_REFLECTION_2_LAYER that I´m searching for.
Granyte
Posts: 850
Joined: Tue Jan 25, 2011 11:07 pm
Contact:

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by Granyte »

they are all in a constant in CD3D11FixedPipelineRenderer.cpp
robmar
Posts: 1125
Joined: Sun Aug 14, 2011 11:30 pm

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by robmar »

Okay thanks. There are the same shaders as in 1.7.3 or were there any changes?

For the download I´ve not done this before, is this the link https://svn.code.sf.net/p/irrlicht/code ... /Irrlicht/
Granyte
Posts: 850
Joined: Tue Jan 25, 2011 11:07 pm
Contact:

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by Granyte »

I sugest using a svn software like tortoise svn it will allow you to download full branch

and downloading and creating a checkout from this branch https://svn.code.sf.net/p/irrlicht/code ... -pipeline/
robmar
Posts: 1125
Joined: Sun Aug 14, 2011 11:30 pm

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by robmar »

Thanks. I see that the shaders have been updated too, and there is an 8-light pixel shader with fog support. Nice work!
robmar
Posts: 1125
Joined: Sun Aug 14, 2011 11:30 pm

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by robmar »

Going through the shader I see it isnt complete yet. In which file of irrlicht 1.7.3 are the old shaders?

I'll see if I can complete some of the missing bits.
Granyte
Posts: 850
Joined: Tue Jan 25, 2011 11:07 pm
Contact:

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by Granyte »

The old shaders?

you mean the dx9 shaders or those I tried to complete they were in d3d11 material or something
robmar
Posts: 1125
Joined: Sun Aug 14, 2011 11:30 pm

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by robmar »

Yes, the old dx9 ones. I´d like to compare them to the new ones to make sure the function matches, and add sphermap, reflection etc but as pixel shaders using them as reference.
Granyte
Posts: 850
Joined: Tue Jan 25, 2011 11:07 pm
Contact:

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by Granyte »

They are in the CD3D9ParallaxMapRenderer.cpp and CD3D9NormalMapRenderer.cpp


also looking back at the way we describe the vertex layout when using multiple streams and I think we should have dx9 imitate the way dx10-11 works aka describing the stream frequency in the vertex descriptor rather then having it set by the rendering function


as no matter how we build it we cannot change the stream frequency in the dx11 descriptor on the fly so there would be some functionality hidden like the per triangle step rate in dx11

now I would need to know how OGL vertex streams works to build a model that would work across dx9 dx10/11 and OGL
robmar
Posts: 1125
Joined: Sun Aug 14, 2011 11:30 pm

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by robmar »

I´ve seen those two files, but ren´t there vertex shaders for EMT_SOLID, and for EMT_REFLECTIVE...?

... I must be overlooking something
robmar
Posts: 1125
Joined: Sun Aug 14, 2011 11:30 pm

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by robmar »

Using Tortoise SVN to import from https://svn.code.sf.net/p/irrlicht/code ... -pipeline/ but its asking for a password!?!

Tried with my forum password but its not that....any ideas?
zerochen
Posts: 273
Joined: Wed Jan 07, 2009 1:17 am
Location: Germany

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by zerochen »

robmar
Posts: 1125
Joined: Sun Aug 14, 2011 11:30 pm

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by robmar »

Just tried that and got :- POST of '/p/irrlicht/code/!svn/me': 403 Forbidden (http://svn.code.sf.net)

I had made a folder on my drive, right clicked it, clicked Tortoise SVN, then Import, entered the link, hit okay and then this error.
zerochen
Posts: 273
Joined: Wed Jan 07, 2009 1:17 am
Location: Germany

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by zerochen »

you have to use checkout not import:)
robmar
Posts: 1125
Joined: Sun Aug 14, 2011 11:30 pm

Re: Finally, a DirectX 10 video driver for Irrlicht

Post by robmar »

Cryptic stuff, will give it a go 2mrw
Post Reply