How do I disable DirectDraw and Direct3D acceleration on Windows 8?

4

4

Some old games that I would really like to play run slowly on some graphic drivers when Direct3D acceleration is enabled.

I have tried many suggestions but none seem to work. The only thing I have not tried is disabling Direct3D acceleration. Is it possible to disable DirectDraw and Direct3D acceleration on my Windows 8 PC?

From InterAction Studios:

There are certain bad versions of GeForce drivers that cause this problem. This is a problem in the drivers themselves and is unfortunately completely outside our control. The recommended way to fix this problem is to update your graphics card drivers (go to NVIDIA's web site for this).

Alternatively, there is a workaround that alleviates or solves the slowdown problem altogether.

Try this: Right-click on your desktop and select "Properties". Go to the "Settings" tab and click on "Advanced...". Click on the "Troubleshooting" tab and move the slider to the left until it says that all DirectDraw and Direct3D accelerations have been disabled (around the middle of the range). Finally, click on "OK".

Note that this workaround might cause other games on your computer to slow down, so you may have to switch back and forth between settings, but it's certainly worth a try if you can't obtain an updated graphics driver.

Favourite Chigozie Onwuemene

Posted 2012-10-29T09:22:45.120

Reputation: 193

1Do you have real reason for wanting to do this? – ChrisF – 2012-10-29T09:48:28.770

1@ChrisF I used this to fix the colors in StarCraft on the old Intel integrated graphics. – Mikhail – 2012-10-31T06:53:05.067

1Your problem is less likely DirectDraw and DirectX, and more likely to do with the WDDM 1.2 driver model that's preferred in Windows 8. – Ƭᴇcʜιᴇ007 – 2012-11-11T19:22:36.397

Answers

3

Its possible I did it .(Successfully tested on Windows 8 RTM)

Steps:

1. Disable Aero(Mostly not necessary but do it for now) Disable aero

2. Download directx 9.0c control panel from here

3. Extract and run "directx.cpl" as administrator.

4. Goto Direct3D and DirectDraw tabs and uncheck "Allow hardware acceleration ". directx control panel

5. Run dxdiag from Directx tab else from run command and check status dx status

swapyonubuntu

Posted 2012-10-29T09:22:45.120

Reputation: 732

Why is it in high contrast? is it necessary? – pratnala – 2012-11-12T10:47:23.053

no i have kept it .. its not necessary at all ... – swapyonubuntu – 2012-11-12T11:59:42.013

After doing this, I have the same results.. BUT If I run DxDiag in x64 mode (from the system tab) it shows that Both DirectDraw and Direct3d are enabled....! Any ideas on how to disable them there? – Odys – 2013-11-29T08:18:18.513

2

Have you tried the good old registry keys?

Reg Add HKLM\SOFTWARE\Microsoft\DirectDraw /V EmulationOnly /T REG_DWORD /D %_Mode% /F
Reg Add HKLM\SOFTWARE\Microsoft\Direct3D\Drivers /V SoftwareOnly /T REG_DWORD /D %_Mode% /F

These can be automated as outlined in the following post:

http://www.techsupportforum.com/forums/f10/shortcut-batch-file-code-to-disable-direct-draw-acceleration-437584.html

Also, isn't it still in the compatability wizard as "ForceDirectDrawEmulation"?

Mikhail

Posted 2012-10-29T09:22:45.120

Reputation: 3 782