Elisha Riedlinger

Results 768 comments of Elisha Riedlinger

@carstenschwede, as far as I know, the only way to avoid DWM is to run the program in exclusive fullscreen mode (as you mention). I don't have options in dxwrapper...

@carstenschwede, I added a feature to force exclusive fullscreen mode. The new option is `ForceExclusiveFullscreen`. This requires using Direct3D9. Also, it will only set exclusive fullscreen mode when running the...

> I took a look at Chrome in the Process Explorer and it is using `System32\d3d9.dll` instead of the local one. I just realized that you are probably running the...

Can you post your log file? There may be something in the log file that will give a clue on what is happening. Edit: make sure that you have dxwrapper.dll...

This wrapper does not do any drawing. This wrapper just passes through all the functions to the real DirectX dll. I did add some anti-aliasing [here](https://github.com/elishacloud/d3d8to9/tree/AntiAliasing) that you can check...

I don't know much about the mouse acceleration issue with Turok Evolution. You could use a DirectInput wrapper to help debug the mouse interaction and fix the issue with the...

That log entry should only happen when `AntiAliasing` is enabled in the dxwrapper.ini file. Try disabling `AntiAliasing` and see if that fixes the black screen. Currently I am not fully...

Yes this issue was introduced with Windows 10 [Fall Creators Edition](https://blogs.windows.com/windowsexperience/2017/10/17/whats-new-windows-10-fall-creators-update/). If you are running any older version of Windows 10 (or other versions of Windows) this issue does not...

Yes, I believe the issue is specific to _Indiana Jones and the Emperor's Tomb_ and not directly related to .bik movies. In fact even with _Indiana Jones and the Emperor's...

I just found out that _Indiana Jones and the Emperor's Tomb_ uses [DirectDraw](https://msdn.microsoft.com/en-us/library/windows/desktop/gg426115(v=vs.85).aspx). I noticed it calling: - [DirectDrawCreate](https://msdn.microsoft.com/en-us/library/windows/desktop/gg426116(v=vs.85).aspx) - [SetCooperativeLevel](https://msdn.microsoft.com/en-us/library/windows/desktop/gg426155(v=vs.85).aspx) - [CreateSurface](https://msdn.microsoft.com/en-us/library/windows/desktop/gg426136(v=vs.85).aspx) However `CreateSurface` fails with error 887600E1. This...