Hmm, I extracted the alpha 3 files into the bin folder. The folders appear to be matched up properly, but now my game doesn't start up properly anymore. I get a black screen forever.
I'm on 1.04 witcher now (stupid steam lol). Not sure if it's related to that, I did not try the alpha before the update.
Any help would be greatly appreciated :).
Hmm, I extracted the alpha 3 files into the bin folder. The folders appear to be matched up properly, but now my game doesn't start up properly anymore. I get a black screen forever.
I'm on 1.04 witcher now (stupid steam lol). Not sure if it's related to that, I did not try the alpha before the update.
[quote="bouncynemo"]Hmm, I extracted the alpha 3 files into the bin folder. The folders appear to be matched up properly, but now my game doesn't start up properly anymore. I get a black screen forever.
I'm on 1.04 witcher now (stupid steam lol). Not sure if it's related to that, I did not try the alpha before the update.
Any help would be greatly appreciated :).[/quote]
It`s been mentioned before by Mike - you need to have so called "evil update" KB2670838 installed. Update your Windows or install IE 11. That will add it automatically.
Patch 1.04 have nothing to do with it. Just install that update and you`ll be good.
bouncynemo said:Hmm, I extracted the alpha 3 files into the bin folder. The folders appear to be matched up properly, but now my game doesn't start up properly anymore. I get a black screen forever.
I'm on 1.04 witcher now (stupid steam lol). Not sure if it's related to that, I did not try the alpha before the update.
Any help would be greatly appreciated :).
It`s been mentioned before by Mike - you need to have so called "evil update" KB2670838 installed. Update your Windows or install IE 11. That will add it automatically.
Patch 1.04 have nothing to do with it. Just install that update and you`ll be good.
[quote="SKAUT"]
It`s been mentioned before by Mike - you need to have so called "evil update" KB2670838 installed. Update your Windows or install IE 11. That will add it automatically.[/quote]
Oh thanks, but I verified my witcher cache and applied the patch again. It works now :D. I guess one of my files was corrupted or something lol.
SKAUT said:
It`s been mentioned before by Mike - you need to have so called "evil update" KB2670838 installed. Update your Windows or install IE 11. That will add it automatically.
Oh thanks, but I verified my witcher cache and applied the patch again. It works now :D. I guess one of my files was corrupted or something lol.
[quote="SKAUT"]
Shitty 3D / Real 3D - yea i guess i do have some good feedback :)
If you don`t see the difference then maybe you not switching between them. Do you have message saying Compatibility Mode - On/Off ? Do you see the halo around Objects/Characters ?[/quote]
That must be it. I don't see anything when I press those keys. But everything seems to look fine. I see the halos only when sometimes I alt-tab outside or activate some UI screen. When going back to the game I see some very faint halos say a hundred pixels or so to the side.
I am on W8.1 if that helps.
SKAUT said:
Shitty 3D / Real 3D - yea i guess i do have some good feedback :)
If you don`t see the difference then maybe you not switching between them. Do you have message saying Compatibility Mode - On/Off ? Do you see the halo around Objects/Characters ?
That must be it. I don't see anything when I press those keys. But everything seems to look fine. I see the halos only when sometimes I alt-tab outside or activate some UI screen. When going back to the game I see some very faint halos say a hundred pixels or so to the side.
In patch 1.04 720p is fixed. But 3d fix from Mike, page 24, does not work properly. All textures are mixed as without fix. It`s patch 1.04 or me? It works for someone with new patch?
In patch 1.04 720p is fixed. But 3d fix from Mike, page 24, does not work properly. All textures are mixed as without fix. It`s patch 1.04 or me? It works for someone with new patch?
Intel Xeon E5430 @ 3.6GHz
GTX 960
8GB RAM
Windows 10
Gamepad xbox 360
[quote="Falkir"]In patch 1.04 720p is fixed. But 3d fix from Mike, page 24, does not work properly. All textures are mixed as without fix. It`s patch 1.04 or me? It works for someone with new patch?[/quote]
It works like previously. No problems with 3D at all - same elements fixed and the same broken.
Try to uninstall fix and put it back again.
Falkir said:In patch 1.04 720p is fixed. But 3d fix from Mike, page 24, does not work properly. All textures are mixed as without fix. It`s patch 1.04 or me? It works for someone with new patch?
It works like previously. No problems with 3D at all - same elements fixed and the same broken.
Try to uninstall fix and put it back again.
[quote="DarkStarSword"][quote="DarkStarSword"][quote="bo3b"]This also includes a lot of changes to switch to asint() from (int) coercions. I did every instructions that was clearly integer based like IADD, ISHR, IGE, INEG and so on. I also did the UADD, UGE with asuint(). Fairly experimental here, I'd like to verify this works before sending it out, but it seems better to give you quick looks.
I spot checked some and it looks to at least be no worse than it was, can't promise it'll fix things though.
This is incomplete, just a good start. I didn't do the weird instructions like BFI or UBFE or SWAPC, because my brain is full.[/quote]
So I gave this a spin on f9c83c25de6eaa51 to compare it's result with my hand fixup, and at the moment it causes some issues. I think it's due to reinterpreting values stored in temporary registers which we have already cast to floats. Unless we can get the temporary registers to store the integer bit pattern (which I just can't seem to make work) I think we need to make this a bit smarter so that it only uses asint() on constant buffer reads and (int) when reading a temporary register.[/quote]
I've pushed up a fix to 3Dmigoto for this. Tested it on four of the affected shaders and it now seems to do the right thing (and has fixed a couple of subtle rendering issues).
[quote="helifax"] Interesting;))
I also noticed it causes some issues in some areas. Like the cave from the savegame. In some areas stuff is semi-dark with a greenish tint. [/quote]
That could easily be from this issue - when I redid some of the shaders some subtle tints were fixed.
Also I noticed the shader that we are skipping (16f398fc56dce109) causes the colour of the whole scene to change, so for my testing I've reenabled that shader.
@Mike - the comment in the shader mentions it's a one eye issue. Maybe I just haven't played far enough or maybe it's an SLI thing but I haven't noticed any one eye issues yet (ditto on other shaders disabled with one eye comments) - what were some of the one eye issues you saw?
[/quote]
Grey moving shadows in a kind of big triangle pattern. Forgive brevity, am having breakfast at Disney Land...
bo3b said:This also includes a lot of changes to switch to asint() from (int) coercions. I did every instructions that was clearly integer based like IADD, ISHR, IGE, INEG and so on. I also did the UADD, UGE with asuint(). Fairly experimental here, I'd like to verify this works before sending it out, but it seems better to give you quick looks.
I spot checked some and it looks to at least be no worse than it was, can't promise it'll fix things though.
This is incomplete, just a good start. I didn't do the weird instructions like BFI or UBFE or SWAPC, because my brain is full.
So I gave this a spin on f9c83c25de6eaa51 to compare it's result with my hand fixup, and at the moment it causes some issues. I think it's due to reinterpreting values stored in temporary registers which we have already cast to floats. Unless we can get the temporary registers to store the integer bit pattern (which I just can't seem to make work) I think we need to make this a bit smarter so that it only uses asint() on constant buffer reads and (int) when reading a temporary register.
I've pushed up a fix to 3Dmigoto for this. Tested it on four of the affected shaders and it now seems to do the right thing (and has fixed a couple of subtle rendering issues).
helifax said: Interesting;))
I also noticed it causes some issues in some areas. Like the cave from the savegame. In some areas stuff is semi-dark with a greenish tint.
That could easily be from this issue - when I redid some of the shaders some subtle tints were fixed.
Also I noticed the shader that we are skipping (16f398fc56dce109) causes the colour of the whole scene to change, so for my testing I've reenabled that shader.
@Mike - the comment in the shader mentions it's a one eye issue. Maybe I just haven't played far enough or maybe it's an SLI thing but I haven't noticed any one eye issues yet (ditto on other shaders disabled with one eye comments) - what were some of the one eye issues you saw?
Grey moving shadows in a kind of big triangle pattern. Forgive brevity, am having breakfast at Disney Land...
[quote="Arioch1"]You can use RadeonPro with 3DMigoto but you will be limited to SweetFX 1.4. With that you still can still do color correction with tonemap and such.[/quote]
Thanks, I will give it a try ASAP and let the forum know about hte results.
[quote="Flugan"]I just did some testing and SweetFX wouldn't load.
Either crash to desktop or black screen with mouse pointer.
Just my initial results.[/quote]
I hope someone will find a way since this Sweetfx is simply awesome for this game, the best I found so far, and I believe a lot of people would be happy to get both the benefits of 3D and good colors (as opposed to the silly yellow/orange they choose).
I understand the matter of donations has been discussed, and I like the answer that has been given: "put in some of your time to help out instead" and the problems with the steam mods debacle. Fact is I don't have time for this right now, too much work, but I still want to help, and donations could be a way, also they are not "required" as in the steam debacle.
Arioch1 said:You can use RadeonPro with 3DMigoto but you will be limited to SweetFX 1.4. With that you still can still do color correction with tonemap and such.
Thanks, I will give it a try ASAP and let the forum know about hte results.
Flugan said:I just did some testing and SweetFX wouldn't load.
Either crash to desktop or black screen with mouse pointer.
Just my initial results.
I hope someone will find a way since this Sweetfx is simply awesome for this game, the best I found so far, and I believe a lot of people would be happy to get both the benefits of 3D and good colors (as opposed to the silly yellow/orange they choose).
I understand the matter of donations has been discussed, and I like the answer that has been given: "put in some of your time to help out instead" and the problems with the steam mods debacle. Fact is I don't have time for this right now, too much work, but I still want to help, and donations could be a way, also they are not "required" as in the steam debacle.
After some more time spend in game i am pretty sure that latest patch (1.04) improved stability. I didn`t have even one crash after more then two hours of game play.
Also those textures seems to be looking better. I`m playing really close to the screen so i am picky with it and it feels like they improved them.
After some more time spend in game i am pretty sure that latest patch (1.04) improved stability. I didn`t have even one crash after more then two hours of game play.
Also those textures seems to be looking better. I`m playing really close to the screen so i am picky with it and it feels like they improved them.
Im with win 8.1 and internet explorer 11, dont know if i have the Evil Update or not, cannot find anywhere to get it, but 0.03 doesn't work for me, game won't start, black screen then crash. I do replace the 0.03 d3d11.dll by 0.02 d3d11.dll, the game start well., FYI. Very happy with 3D right now, thanks for all your time fixing this game for 3D :P
Thank You!
Im with win 8.1 and internet explorer 11, dont know if i have the Evil Update or not, cannot find anywhere to get it, but 0.03 doesn't work for me, game won't start, black screen then crash. I do replace the 0.03 d3d11.dll by 0.02 d3d11.dll, the game start well., FYI. Very happy with 3D right now, thanks for all your time fixing this game for 3D :P
Thank You!
[quote="TommyCK"] Im with win 8.1 and internet explorer 11, dont know if i have the Evil Update or not, cannot find anywhere to get it, but 0.03 doesn't work for me, game won't start, black screen then crash. I do replace the 0.03 d3d11.dll by 0.02 d3d11.dll, the game start well., FYI. Very happy with 3D right now, thanks for all your time fixing this game for 3D :P
Thank You![/quote]
Go to "Control Panel" there to "Uninstall or Change Programs" and there you have "View Installed Updates". Check there if you still got that update KB2670838. Also you suppose to use Flugan`s version of this fix - that`s for Win 8.
[quote="mrorange55"]No, patch 4 did not cure the crashes... [/quote]
No it didn`t but the crashes are less annoying - they don`t happen very often. I hadn`t even one after so many hours of game play so its definitely better.
TommyCK said: Im with win 8.1 and internet explorer 11, dont know if i have the Evil Update or not, cannot find anywhere to get it, but 0.03 doesn't work for me, game won't start, black screen then crash. I do replace the 0.03 d3d11.dll by 0.02 d3d11.dll, the game start well., FYI. Very happy with 3D right now, thanks for all your time fixing this game for 3D :P
Thank You!
Go to "Control Panel" there to "Uninstall or Change Programs" and there you have "View Installed Updates". Check there if you still got that update KB2670838. Also you suppose to use Flugan`s version of this fix - that`s for Win 8.
mrorange55 said:No, patch 4 did not cure the crashes...
No it didn`t but the crashes are less annoying - they don`t happen very often. I hadn`t even one after so many hours of game play so its definitely better.
[quote="SKAUT"][quote="AvengerDr"]No worries, as it happens I am actually a 3D Interaction researcher. It seems that nothing happens when I press those keys. Do you get a feedback message when you enable or disable it? [/quote]
Shitty 3D / Real 3D - yea i guess i do have some good feedback :)
If you don`t see the difference then maybe you not switching between them. Do you have message saying Compatibility Mode - On/Off ? Do you see the halo around Objects/Characters ?[/quote]
I could be confused here, but I don't think the normal Witcher3 profile has any Compatibility Mode. It's not in the driver release notes, and the true-3D profile is. That strongly suggests they did not add CM here.
So, the only way you can get CM in this game at the moment, is to use Helifax's guide, and manually add it.
AvengerDr said:No worries, as it happens I am actually a 3D Interaction researcher. It seems that nothing happens when I press those keys. Do you get a feedback message when you enable or disable it?
Shitty 3D / Real 3D - yea i guess i do have some good feedback :)
If you don`t see the difference then maybe you not switching between them. Do you have message saying Compatibility Mode - On/Off ? Do you see the halo around Objects/Characters ?
I could be confused here, but I don't think the normal Witcher3 profile has any Compatibility Mode. It's not in the driver release notes, and the true-3D profile is. That strongly suggests they did not add CM here.
So, the only way you can get CM in this game at the moment, is to use Helifax's guide, and manually add it.
Acer H5360 (1280x720@120Hz) - ASUS VG248QE with GSync mod - 3D Vision 1&2 - Driver 372.54
GTX 970 - i5-4670K@4.2GHz - 12GB RAM - Win7x64+evilKB2670838 - 4 Disk X25 RAID
SAGER NP9870-S - GTX 980 - i7-6700K - Win10 Pro 1607 Latest 3Dmigoto Release Bo3b's School for ShaderHackers
I'm on 1.04 witcher now (stupid steam lol). Not sure if it's related to that, I did not try the alpha before the update.
Any help would be greatly appreciated :).
It`s been mentioned before by Mike - you need to have so called "evil update" KB2670838 installed. Update your Windows or install IE 11. That will add it automatically.
Patch 1.04 have nothing to do with it. Just install that update and you`ll be good.
https://steamcommunity.com/profiles/76561198014296177/
Oh thanks, but I verified my witcher cache and applied the patch again. It works now :D. I guess one of my files was corrupted or something lol.
https://steamcommunity.com/profiles/76561198014296177/
That must be it. I don't see anything when I press those keys. But everything seems to look fine. I see the halos only when sometimes I alt-tab outside or activate some UI screen. When going back to the game I see some very faint halos say a hundred pixels or so to the side.
I am on W8.1 if that helps.
Intel Xeon E5430 @ 3.6GHz
GTX 960
8GB RAM
Windows 10
Gamepad xbox 360
It works like previously. No problems with 3D at all - same elements fixed and the same broken.
Try to uninstall fix and put it back again.
https://steamcommunity.com/profiles/76561198014296177/
Grey moving shadows in a kind of big triangle pattern. Forgive brevity, am having breakfast at Disney Land...
Rig: Intel i7-8700K @4.7GHz, 16Gb Ram, SSD, GTX 1080Ti, Win10x64, Asus VG278
Thanks, I will give it a try ASAP and let the forum know about hte results.
I hope someone will find a way since this Sweetfx is simply awesome for this game, the best I found so far, and I believe a lot of people would be happy to get both the benefits of 3D and good colors (as opposed to the silly yellow/orange they choose).
I understand the matter of donations has been discussed, and I like the answer that has been given: "put in some of your time to help out instead" and the problems with the steam mods debacle. Fact is I don't have time for this right now, too much work, but I still want to help, and donations could be a way, also they are not "required" as in the steam debacle.
Also those textures seems to be looking better. I`m playing really close to the screen so i am picky with it and it feels like they improved them.
https://steamcommunity.com/profiles/76561198014296177/
http://photos.3dvisionlive.com/chtiblue/album/530b52d4cb85770d6e000049/3Dvision with 55" LG OLED EG920 interlieved 3D (3840x2160) overide mode, GTX 2080 Ti XC Ultra EVGA, core i5 @4.3GHz, 16Gb@2130, windows 7&10 64bit, Dolby Atmos 5.1.4 Marantz 6010 AVR
Thank You!
ASUS VG248QE - 3D Vision 2 - Newest Driver
GTX 760 SLI 2G - i5-4670K@4.4GHz - 8GB RAM - Win 8.1
Intel Core i7-3820, 4 X 3,60 GHz overclocked to 4,50 GHz ; EVGA Titan X 12VRAM ; 16 GB Corsair Vengeance DDR-1600 (4x 4 GB) ; Asus VG278H 27-inch incl. 3D vision 2 glasses, integrated transmitter ; Xbox One Elite wireless controller ; Windows 10HTC VIVE 2,5 m2 roomscale3D VISION GAMERS - VISIT ME ON STEAM and feel free to add me: http://steamcommunity.com/profiles/76561198064106555 YOUTUBE: https://www.youtube.com/channel/UC1UE5TPoF0HX0HVpF_E4uPQ STEAM CURATOR: https://store.steampowered.com/curator/33611530-Streaming-Deluxe/
Go to "Control Panel" there to "Uninstall or Change Programs" and there you have "View Installed Updates". Check there if you still got that update KB2670838. Also you suppose to use Flugan`s version of this fix - that`s for Win 8.
No it didn`t but the crashes are less annoying - they don`t happen very often. I hadn`t even one after so many hours of game play so its definitely better.
https://steamcommunity.com/profiles/76561198014296177/
I could be confused here, but I don't think the normal Witcher3 profile has any Compatibility Mode. It's not in the driver release notes, and the true-3D profile is. That strongly suggests they did not add CM here.
So, the only way you can get CM in this game at the moment, is to use Helifax's guide, and manually add it.
Acer H5360 (1280x720@120Hz) - ASUS VG248QE with GSync mod - 3D Vision 1&2 - Driver 372.54
GTX 970 - i5-4670K@4.2GHz - 12GB RAM - Win7x64+evilKB2670838 - 4 Disk X25 RAID
SAGER NP9870-S - GTX 980 - i7-6700K - Win10 Pro 1607
Latest 3Dmigoto Release
Bo3b's School for ShaderHackers