This repository was archived by the owner on Jun 21, 2022. It is now read-only.
forked from chrisbmr/wine
-
Notifications
You must be signed in to change notification settings - Fork 10
winecfg: Set DirectDrawRenderer to "gdi" when Gallium Nine is enabled #25
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Author: Sebastian Lackner <[email protected]> Tested-By: Patrick Rudolph <[email protected]>
Contributors: Tiziano Bacocco <[email protected]> Axel Davy <[email protected]> David Heidelberg <[email protected]> Patrick Rudolph <[email protected]> Nick Sarnie <[email protected]> Joakim Sindholt <[email protected]> Emil Velikov <[email protected]>
This enables the Steam overlay to work Signed-off-by: Axel Davy <[email protected]>
Add new function for presentation interface 1.2. Fixes issue #102. Signed-off-by: Patrick Rudolph <[email protected]>
Copy WINE's wined3d wndproc hooking code. The code is taken from wined3d/device.c and wined3d/swapchain.c. The new approach works much better than using SetWindowsHookEx. Use display resolution from registry instead initial display resolution. Intercept WM_SYSCOMMAND as it wasn't possible before. Fixes most of failing wine tests test_wndproc() device.c. Signed-off-by: Patrick Rudolph <[email protected]>
The value to compare with hasn't been written in case the device is started in fullscreen. Check device window to make sure the data to compare with is valid. Signed-off-by: Patrick Rudolph <[email protected]>
Filter invalid modes and frequency. Fixes failing wine test test_reset(). Signed-off-by: Patrick Rudolph <[email protected]>
In error cases don't try to set Vtbl pointer. Signed-off-by: Patrick Rudolph <[email protected]>
Signed-off-by: Patrick Rudolph <[email protected]>
GL headers and WINE headers define and use APIENTRY. Make sure not to use WINE's APIENTRY in GL headers, as it causes ABI mismatch on function entry. Fixes DRI2 on x86_64. Issue #183. Signed-off-by: Patrick Rudolph <[email protected]>
Get rid of D3DPRESENT_PARAMETERS in dri3. Required to remove d3d9.h headers. Signed-off-by: Patrick Rudolph <[email protected]>
Get rid of d3d9.h include in dri3.c. Signed-off-by: Patrick Rudolph <[email protected]>
Remove unneeded includes. Signed-off-by: Patrick Rudolph <[email protected]>
Signed-off-by: Patrick Rudolph <[email protected]>
Repleace pthread mutex with CriticalSection to get rid of libpthread dependency. Signed-off-by: Patrick Rudolph <[email protected]>
Fixes a failing WINE test. Signed-off-by: Patrick Rudolph <[email protected]>
Return more errors to caller and print errors. Signed-off-by: Patrick Rudolph <[email protected]>
It's no longer needed for d3d9-nine.dll Signed-off-by: Patrick Rudolph <[email protected]>
Trace resolution changes in DRI3Present_ChangePresentParameters. Signed-off-by: Patrick Rudolph <[email protected]>
Only switch back to initial resolution in case the device was fullscreen and is windowed now. Signed-off-by: Patrick Rudolph <[email protected]>
The workaround is no longer needed. Fixes the last failing WINE test and actives focus window on device reset. Signed-off-by: Patrick Rudolph <[email protected]>
D3DCREATE_NOWINDOWCHANGES is part of BehaviorFlags, not part of D3DPRESENT_PARAMETERS flags. Signed-off-by: Patrick Rudolph <[email protected]>
Clear resolution_mismatch after resolution change, as the new "correct" resolution hasn't been set yet. Signed-off-by: Patrick Rudolph <[email protected]>
Signed-off-by: Patrick Rudolph <[email protected]>
Fix for issue #244. Signed-off-by: Patrick Rudolph <[email protected]>
Add the new functions of presentation interface 1.3.
Try to detect client side window decorations using xcb functions. Signed-off-by: Patrick Rudolph <[email protected]>
I agree with siro on this topic |
This is a workaround for black screen issue in programs that use "DX Library". Signed-off-by: Masanori Kakura <[email protected]>
Closing because the "black screen" issue can be worked around without this and I'm not sure this is really useful. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds a new DLL "ddraw-nine.dll", which ignoresIDirectDraw7::SetCooperativeLevel()
.The DLL uses
PARENTSPEC
in its Makefile.in, so the "makedep-PARENTSPEC" patch from Wine Staging is required.Set
DirectDrawRenderer
to "gdi" when Gallium Nine is enabled.This fixes iXit/Mesa-3D#65 (black screen issue in programs that use "DX Library").