TBH, I was just seeing if you would do it. Its almost impossible to fix a game at any level of detail without it installed. Will look at it soon. Dont get your hopes up on results though. Might not even work out. Im not even sure at how well it can be done with a noob start. like how many stars are 2D, 1? 100? are they in different areas? Can I reach them easily? Same applies to waypoints
I was kind of hopeing stars were on its own shader but if its on same shader as hud that makes things difficult because it needs to be sorted manually.
Basically I need to launch game and see if I can fix it.
Then I need to see if I can sort textures. [It looks like a lot] If I get to this step and its a lot more then I can do easily as a noob. Ill have to give you instructions on how to do it yourself but then your on your own. Some games let you grab a lot of textures at once.... some its only one at atime which makes it next to impossible with a mmo hud. Texture sorting can easily be the most arduous task in fixing games. I gave up on trying to seperate textures in serious sam after maybe an hour and a half and its a fps with practically no hud. Deadpool didn't let me sort it as well I wanted to and basically turned into a 6 hour project[just on hud] and results were mediocre. So I guess hope for the best.
TBH, I was just seeing if you would do it. Its almost impossible to fix a game at any level of detail without it installed. Will look at it soon. Dont get your hopes up on results though. Might not even work out. Im not even sure at how well it can be done with a noob start. like how many stars are 2D, 1? 100? are they in different areas? Can I reach them easily? Same applies to waypoints
I was kind of hopeing stars were on its own shader but if its on same shader as hud that makes things difficult because it needs to be sorted manually.
Basically I need to launch game and see if I can fix it.
Then I need to see if I can sort textures. [It looks like a lot] If I get to this step and its a lot more then I can do easily as a noob. Ill have to give you instructions on how to do it yourself but then your on your own. Some games let you grab a lot of textures at once.... some its only one at atime which makes it next to impossible with a mmo hud. Texture sorting can easily be the most arduous task in fixing games. I gave up on trying to seperate textures in serious sam after maybe an hour and a half and its a fps with practically no hud. Deadpool didn't let me sort it as well I wanted to and basically turned into a 6 hour project[just on hud] and results were mediocre. So I guess hope for the best.
I was hoping you wouldnt have to do it for me, but the stars are in the thousands and they are everywhere too, as soon as you exit a space station you will get my drift, stars and waypoints are the problem. I can only thank you for the effort since you wont except payment, let me know if you change your mind :)
I was hoping you wouldnt have to do it for me, but the stars are in the thousands and they are everywhere too, as soon as you exit a space station you will get my drift, stars and waypoints are the problem. I can only thank you for the effort since you wont except payment, let me know if you change your mind :)
I wont have time to test this for a few days but I had to stop working on a game because I couldnt use the texture function on a game because I had to use new dll for the getcurdiratload function.
Helix just explained how here...
"Textures mechanism almost the same as it was. Only points changed.
Now it uses addition node for points "Vertex buffer". There is a bug when texture crc doesn't show up in the log.
To fix it you need to add empty VB node.
Example:
[VSCFE06CF7]
CheckTexCRC = true
VBOffsetList = 0;// use empty VB node
//declare VB , same crc as VS "dot" index
[VBCFE06CF7.0]
PointsList = 554;// random value only need for texture log
This is only need in debug dll for texture logging and you can delete or comment VBOffsetList = 0 line from release. "
I wont have time to test this for a few days but I had to stop working on a game because I couldnt use the texture function on a game because I had to use new dll for the getcurdiratload function.
Helix just explained how here...
"Textures mechanism almost the same as it was. Only points changed.
Now it uses addition node for points "Vertex buffer". There is a bug when texture crc doesn't show up in the log.
To fix it you need to add empty VB node.
Example:
[VSCFE06CF7]
CheckTexCRC = true
VBOffsetList = 0;// use empty VB node
//declare VB , same crc as VS "dot" index
[VBCFE06CF7.0]
PointsList = 554;// random value only need for texture log
This is only need in debug dll for texture logging and you can delete or comment VBOffsetList = 0 line from release. "
[url]https://forums.geforce.com/default/topic/549407/3d-vision/eve-online-will-even-pay-to-have-it-fixed-/post/3846133/#3846133[/url]
Eve's done as much as it can be. I was talking about syndicate. I posted link above.
Thanks for that update on the VBOffset.
Just as a data point, I tried that setting with FSX, and did not find any textures in TexturesLog.txt. I put that in the [General] section. Hope that's right.
There is a 'general.fx' shader that is used for 90% of the scene, so being able to separate textures would be nice. No earlier DLLs work either, so it might not be possible.
Just as a data point, I tried that setting with FSX, and did not find any textures in TexturesLog.txt. I put that in the [General] section. Hope that's right.
There is a 'general.fx' shader that is used for 90% of the scene, so being able to separate textures would be nice. No earlier DLLs work either, so it might not be possible.
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
No.
Under the shader. Like this unless I screwed something up.
[VS3324EE72]
CheckTexCRC = true
ValForDefined = 1
ValNotDefined = 0
TexCounterReg = 252
DefinedTexturesVS =
VBOffsetList = 0;
[VB3324EE72.0]
PointsList = 554;
Seperating texture doesnt matter unless you can fix it. Try to fix it before seperating the texture. So what if you break other stuff but you should really try to fix it beforehand.
Seperating texture doesnt matter unless you can fix it. Try to fix it before seperating the texture. So what if you break other stuff but you should really try to fix it beforehand.
Ah, right. I'll try that under the shader. The problem is that since so much goes through this primary general.fx, that when I alter it I can't tell if it changed or not. (hard to describe. Like the land underneath a light changes at the same time a light does, so I can't tell.) I'm thinking that if I can sort out a smaller subset to change I might be able to track down the related vertex shader.
Ah, right. I'll try that under the shader. The problem is that since so much goes through this primary general.fx, that when I alter it I can't tell if it changed or not. (hard to describe. Like the land underneath a light changes at the same time a light does, so I can't tell.) I'm thinking that if I can sort out a smaller subset to change I might be able to track down the related vertex shader.
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
How does it look for you bo3b? The WP look 2D for me, I placed the shader folder and d3d9.dll in the same location as the evemon.exe.
I will take a screenie tonight in 3D :)
I feel bad pointing this one out cause you have done so much to help, but the light on the ship sticks out in 2D, it's orange color, I logged off and now F3 doesn't work :(
http://photos.3dvisionlive.com/Milamber/
I feel bad pointing this one out cause you have done so much to help, but the light on the ship sticks out in 2D, it's orange color, I logged off and now F3 doesn't work :(
http://photos.3dvisionlive.com/Milamber/
This is 2d stars?
455CB080
this is hud?
Co-founder/Web host of helixmod.blog.com
Donations for web hosting @ paypal -eqzitara@yahoo.com
or
https://www.patreon.com/user?u=791918
My 3D Vision Gallery
Helix 3D Fixes
Win 7 x64
i7 4960X Extreme Edition
MSI Big Bang XPower II
2x EVGA Titan Z
Silverstone Evo 1200w
I was kind of hopeing stars were on its own shader but if its on same shader as hud that makes things difficult because it needs to be sorted manually.
Basically I need to launch game and see if I can fix it.
Then I need to see if I can sort textures. [It looks like a lot] If I get to this step and its a lot more then I can do easily as a noob. Ill have to give you instructions on how to do it yourself but then your on your own. Some games let you grab a lot of textures at once.... some its only one at atime which makes it next to impossible with a mmo hud. Texture sorting can easily be the most arduous task in fixing games. I gave up on trying to seperate textures in serious sam after maybe an hour and a half and its a fps with practically no hud. Deadpool didn't let me sort it as well I wanted to and basically turned into a 6 hour project[just on hud] and results were mediocre. So I guess hope for the best.
Co-founder/Web host of helixmod.blog.com
Donations for web hosting @ paypal -eqzitara@yahoo.com
or
https://www.patreon.com/user?u=791918
My 3D Vision Gallery
Helix 3D Fixes
Win 7 x64
i7 4960X Extreme Edition
MSI Big Bang XPower II
2x EVGA Titan Z
Silverstone Evo 1200w
Co-founder/Web host of helixmod.blog.com
Donations for web hosting @ paypal -eqzitara@yahoo.com
or
https://www.patreon.com/user?u=791918
Helix just explained how here...
"Textures mechanism almost the same as it was. Only points changed.
Now it uses addition node for points "Vertex buffer". There is a bug when texture crc doesn't show up in the log.
To fix it you need to add empty VB node.
Example:
[VSCFE06CF7]
CheckTexCRC = true
VBOffsetList = 0;// use empty VB node
//declare VB , same crc as VS "dot" index
[VBCFE06CF7.0]
PointsList = 554;// random value only need for texture log
This is only need in debug dll for texture logging and you can delete or comment VBOffsetList = 0 line from release. "
Co-founder/Web host of helixmod.blog.com
Donations for web hosting @ paypal -eqzitara@yahoo.com
or
https://www.patreon.com/user?u=791918
My 3D Vision Gallery
Helix 3D Fixes
Win 7 x64
i7 4960X Extreme Edition
MSI Big Bang XPower II
2x EVGA Titan Z
Silverstone Evo 1200w
Eve's done as much as it can be. I was talking about syndicate. I posted link above.
Co-founder/Web host of helixmod.blog.com
Donations for web hosting @ paypal -eqzitara@yahoo.com
or
https://www.patreon.com/user?u=791918
Just as a data point, I tried that setting with FSX, and did not find any textures in TexturesLog.txt. I put that in the [General] section. Hope that's right.
There is a 'general.fx' shader that is used for 90% of the scene, so being able to separate textures would be nice. No earlier DLLs work either, so it might not be possible.
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
Under the shader. Like this unless I screwed something up.
[VS3324EE72]
CheckTexCRC = true
ValForDefined = 1
ValNotDefined = 0
TexCounterReg = 252
DefinedTexturesVS =
VBOffsetList = 0;
[VB3324EE72.0]
PointsList = 554;
Seperating texture doesnt matter unless you can fix it. Try to fix it before seperating the texture. So what if you break other stuff but you should really try to fix it beforehand.
Co-founder/Web host of helixmod.blog.com
Donations for web hosting @ paypal -eqzitara@yahoo.com
or
https://www.patreon.com/user?u=791918
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 will take a screenie tonight in 3D :)
My 3D Vision Gallery
Helix 3D Fixes
Win 7 x64
i7 4960X Extreme Edition
MSI Big Bang XPower II
2x EVGA Titan Z
Silverstone Evo 1200w
Co-founder/Web host of helixmod.blog.com
Donations for web hosting @ paypal -eqzitara@yahoo.com
or
https://www.patreon.com/user?u=791918
http://photos.3dvisionlive.com/Milamber/
My 3D Vision Gallery
Helix 3D Fixes
Win 7 x64
i7 4960X Extreme Edition
MSI Big Bang XPower II
2x EVGA Titan Z
Silverstone Evo 1200w
Co-founder/Web host of helixmod.blog.com
Donations for web hosting @ paypal -eqzitara@yahoo.com
or
https://www.patreon.com/user?u=791918