Guest User

Untitled

a guest
May 18th, 2019
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.51 KB | None | 0 0
  1. ===============================================================================
  2. dgVoodoo2 Quick Guide
  3. ===============================================================================
  4. See the online version of this document
  5.  
  6. If you are new to this wrapper:
  7. Q: What is dgVoodoo? And where is the installer?
  8. A: dgVoodoo consists of components substituting the implementations of various graphics API's like 3Dfx Glide and Microsoft DirectX up to version 8.
  9. Currently it has no installer and its usage is intended to be drop-in: just copy the graphics API dll's from dgVoodoo package next to your game/application executable and run it. You need a graphics card supporting DX10.0 as a minimum.
  10.  
  11. Q: So how can I use it exactly for my old games or other applications?
  12. A: If your game is a 3Dfx Glide one then just copy
  13.  
  14. Glide.dll
  15. Glide2x.dll
  16. Glide3x.dll
  17.  
  18. from the 3Dfx folder to the same folder where your game executable is in. If it's a DirectX application then copy
  19.  
  20. DDraw.dll
  21. D3DImm.dll
  22. D3D8.dll
  23.  
  24. to the game folder from the MS folder. If you don't know which API your game uses, or it uses both Glide and DirectX then just copy all the dll's listed above.
  25. IMPORTANT: Do not copy 3Dfx or MS folders themselves but only the dll files.
  26. Q: That's all?
  27. A: Yes, you can run your game. dgVoodoo should get in action with its default configuration and render your game as a D3D11 one. Altough dgVoodoo is configurable (see below), its default configuration is recommended for first try because this configuration is the one that provides the circumstances the games were designed for.
  28. Q: OK, my game is running but the image is stretched on my screen...
  29. A: Most of the old games is designed for display output aspect ratio of 4:3 and if you have a widescreen monitor then their image will likely be distortedly stretched along the screen, which is not good. The recommended way to fix it is forcing 'keeping aspect ratio' in the control panel of your graphics driver (like nVidia Control panel for nVidia graphics cards).
  30. Q: My graphics driver doesn't support overriding aspect ratios... Is there any other fix to this?
  31. A: Yes, there is. dgVoodoo is configurable and has various scaling modes. You should try that.
  32. Q: How can I configure dgVoodoo?
  33. A: dgVoodoo reads the configuration from a config file named dgVoodoo.conf. How to create one? Well, while dgVoodoo now has a human readable text format config file, you also have the dgVoodoo Control Panel application to render and modify the content of those config files in a convenient GUI way. So, copy dgVoodooCpl.exe to your desktop or any other folder you prefer and start it. You'll see three different tabs set to the default configuration. If you change something and press OK or Apply button then the CPL writes the current configuration into a config file. Where it saves that?? To the folder you select on the Config folder / running instance rolldown menu at the top of the CPL. By default it chooses your login-user appdata folder but you can add extra ones manually, say add and choose your game folder if you want your config file be created there. For now, let's just use the global appdata folder because dgVoodoo finds the configuration file there if none was found in your game folder.
  34. So, let's modify dgVoodoo's scaling mode from Unspecified to Stretched, keep Aspect Ratio and run your game again. You should see the game running at a preserved 4:3 aspect ratio without problems and it's done.
  35.  
  36. Q: But wait, at all, how do I know if my game is being rendered through dgVoodoo?
  37. A: Windows doesn't support 3Dfx Glide natively, so if you see a Glide game running then it must be running through a Glide wrapper. dgVoodoo or something else.
  38. For DirectX games dgVoodoo tags its own small logo to the right-bottom corner. If you see that logo then the game is surely rendered through dgVoodoo.
  39. Q: Cool, now I want to improve the appearance of my game. How to change the resolution and how can I apply some antialiasing?
  40. A: You can, but first of all, you should always set the resolution or antialiasing in your game options menu if it's available there.
  41. If not, or the game has bad UI-scaling then you can try to force it externally through dgVoodoo. You have various options for resolution on Glide and DirectX tabs, so just select there what you want. For antialiasing, dgVoodoo currently only supports MSAA. If you want some other method (or any other fancy image post-process) then you likely need ReShade. The other thing you should know is forcing resolution or MSAA can easily cause unwanted glitches in the appearance, or, as for some games, performance loss or simply erroneous rendering. That's why I said 'try'.
  42.  
  43. Q: So, dgVoodoo has no image post processing at all? What is more, I'm little confused about various resolutions... How dgVoodoo's image output work exactly?
  44. A: First, frames are rendered at the forced resolution instead of application resolution. After that, some optional post process effect take place like deframing, dithering and color adjustments. This image can be pixel multiplied and then finally either presented to the display output, or scaled into your desktop resolution and presented to the display output. Depends on the scaling mode.
  45.  
  46. Q: Should I know any extra about the configuration?
  47. A: It may seem there are plenty of options to play with, but for a quick try and basic usage you shouldn't deal most of them. Setting a scaling mode and forcing resolutions and vertical sync are enough in general. If you want to get deeper knowledge about dgVoodoo then read the detailed docs in the Doc folder.
Add Comment
Please, Sign In to add comment