Nulldc 3d(Dreamcast emulator)
Anybody has any idea which registry key this guy changed to get convergence working: I've managed to get 3D in latest version. I've used this kind of vertex transformation: float CompressZ(float w) { float e,m; m=frexp(w,e); e=clamp(e-5,-127,0); return ldexp(m,e); } ... vo.pos.z=CompressZ(vin.pos.z); vo.pos.w=1.0/(0.001+vin.pos.z); vo.pos.xy*=vo.pos.w; return vo; After renaming nulldc to "googleearth.exe", 3d started in windowed mode. And after modifying registry and hitting some keys (acutally, I didn't remember what) like CTRL+F8 or ALT+F2 (some hidden 3D Vision keys) I've unlocked convergence settings. So 3D is wroking, but the depth of UI and game is very different. So there is need to modify "w" and "z" calculations. From: http://code.google.com/p/nulldc/issues/detail?id=212
Anybody has any idea which registry key this guy changed to get convergence working:

I've managed to get 3D in latest version. I've used this kind of vertex transformation:

float CompressZ(float w)
{
float e,m;
m=frexp(w,e);
e=clamp(e-5,-127,0);
return ldexp(m,e);
}

...

vo.pos.z=CompressZ(vin.pos.z);
vo.pos.w=1.0/(0.001+vin.pos.z);
vo.pos.xy*=vo.pos.w;
return vo;

After renaming nulldc to "googleearth.exe", 3d started in windowed mode. And after modifying registry and hitting some keys (acutally, I didn't remember what) like CTRL+F8 or ALT+F2 (some hidden 3D Vision keys) I've unlocked convergence settings.

So 3D is wroking, but the depth of UI and game is very different. So there is need to modify "w" and "z" calculations.

From:

http://code.google.com/p/nulldc/issues/detail?id=212

#1
Posted 12/14/2013 04:22 AM   
[quote="ricardokung"]Anybody has any idea which registry key this guy changed to get convergence working: And after modifying registry and hitting some keys (acutally, I didn't remember what) like CTRL+F8 or ALT+F2 (some hidden 3D Vision keys) I've unlocked convergence settings.[/quote] I see this quite a bit on here, they are not hidden, you just have to enable them in the NV control panel under 'set keyboard shortcuts' in the setup 3D section.
ricardokung said:Anybody has any idea which registry key this guy changed to get convergence working:


And after modifying registry and hitting some keys (acutally, I didn't remember what) like CTRL+F8 or ALT+F2 (some hidden 3D Vision keys) I've unlocked convergence settings.


I see this quite a bit on here, they are not hidden, you just have to enable them in the NV control panel under 'set keyboard shortcuts' in the setup 3D section.

#2
Posted 12/14/2013 10:05 AM   
If you mean CTRL+F5 and CTRL+F6 I have tested with no effect at all.I thought he was referring to something else.Thanks.
If you mean CTRL+F5 and CTRL+F6 I have tested with no effect at all.I thought he was referring to something else.Thanks.

#3
Posted 12/14/2013 10:12 AM   
There's a new thingy mcBob for nullDC that incorporates SuperDepth3D, for anyone interested [url]https://reshade.me/forum/shader-presentation/2128-3d-depth-map-based-stereoscopic-shader?start=1340#32799[/url]
There's a new thingy mcBob for nullDC that incorporates SuperDepth3D, for anyone interested

https://reshade.me/forum/shader-presentation/2128-3d-depth-map-based-stereoscopic-shader?start=1340#32799

#4
Posted 03/21/2019 09:36 PM   
Scroll To Top