http://bugs.winehq.org/show_bug.cgi?id=10963
Summary: Spurious transparent body parts in everquest 2 -- may be
from bump map
Product: Wine
Version: 0.9.51.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.to.kre(a)9ox.net
Created an attachment (id=9900)
--> (http://bugs.winehq.org/attachment.cgi?id=9900)
Transparent areas on fabric, skin and other flat surfaces OK. Yes, this is a
Frostfell special outfit from the Christmas event area, but it happens on many
other fabric surfaces too.
Almost all non-flat body parts tend to have transparent areas. Since the
structures are similar to "folds" in the fabric or texture, it may be that
these are from a bump map that is erroneously interpreted as transparency map.
The described effect occurs both with and without complex shaders. Screenshot
is with complex shaders enabled.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8608
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #20 from Dan Kegel <dank(a)kegel.com> 2008-01-28 06:14:01 ---
Closing all RESOLVED FIXED bugs older than 0.9.54.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=7351
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #8 from Dan Kegel <dank(a)kegel.com> 2008-01-28 06:14:01 ---
Closing all RESOLVED FIXED bugs older than 0.9.54.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9816
Summary: German translation for main "wine" manpage
Product: Wine
Version: 0.9.45.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-documentation
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marco(a)harddisk.is-a-geek.org
Created an attachment (id=8263)
--> (http://bugs.winehq.org/attachment.cgi?id=8263)
German WINE manpage v.0.1a
I have created a German translation of the Wine(1) man page.
Before you can use it, you should replace the UE/OE/AE with the German umlauts,
my system didn't allow me :(
If you are satisfied with this translation, I'll be happy to translate more
Wine stuff.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9420
Summary: wine exp.exe
Product: Wine
Version: 0.9.43.
Platform: PC-x86-64
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: voloshin(a)mail.ru
err:module:find_forwarded_export module not found for forward
'WS2_32.WSAGetLastError' used by L"C:\\XEClient\\bin\\orauts.dll"
err:module:find_forwarded_export module not found for forward
'WS2_32.WSAStartup' used by L"C:\\XEClient\\bin\\orauts.dll"
err:module:find_forwarded_export module not found for forward
'WS2_32.WSACleanup' used by L"C:\\XEClient\\bin\\orauts.dll"
err:module:find_forwarded_export module not found for forward
'WS2_32.closesocket' used by L"C:\\XEClient\\bin\\orauts.dll"
err:module:find_forwarded_export module not found for forward 'WS2_32.connect'
used by L"C:\\XEClient\\bin\\orauts.dll"
err:module:find_forwarded_export module not found for forward 'WS2_32.accept'
used by L"C:\\XEClient\\bin\\orauts.dll"
err:module:find_forwarded_export module not found for forward 'WS2_32.recv'
used by L"C:\\XEClient\\bin\\orauts.dll"
err:module:find_forwarded_export module not found for forward 'WS2_32.send'
used by L"C:\\XEClient\\bin\\orauts.dll"
err:module:find_forwarded_export module not found for forward 'WS2_32.socket'
used by L"C:\\XEClient\\bin\\orauts.dll"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11052
Summary: crypt32 accesses freed memory and tries to enter deleted
critical sections on process shutdown
Product: Wine
Version: 0.9.52.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: crypt32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kumbayo84+wine_bugzilla(a)gmail.com
Created an attachment (id=10060)
--> (http://bugs.winehq.org/attachment.cgi?id=10060)
output more debug info + possible solution + simplify test case to only 1 call
crypt32 accesses memory after it has been freed
normally this does not manifest, but a easy way to reproduce this is to run the
cert test in the wine test suite with 2 patches of me applied
what happens is:
on process shutdown rsaenh.dll is unloaded
and it calls destroy_handle_table which HeapFrees the handle table
and deletes a critical section
then crypt32.dll is unloaded and it tries to release a handle(release_handle)
from
rsaenh.dll which accesses the HeapFreed handle table + it calls a function of a
already unloaded dll
and tries to enter the already uninitialized critical section
which hangs with my patch that zeros the whole critical section when deleting
it
http://blogs.msdn.com/oldnewthing/archive/2005/05/23/421024.aspx
also talks about this problem of
inside the first patch there are also 2 commented lines
which make crypt32 do nothing when DLL_PROCESS_DETACH happens because of
process shutdown
this might already be the proper solution for this problem
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3527
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #6 from Dan Kegel <dank(a)kegel.com> 2008-01-28 06:13:57 ---
Closing all RESOLVED FIXED bugs older than 0.9.54.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3095
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #13 from Dan Kegel <dank(a)kegel.com> 2008-01-28 06:13:57 ---
Closing all RESOLVED FIXED bugs older than 0.9.54.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4850
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #4 from Dan Kegel <dank(a)kegel.com> 2008-01-28 06:13:57 ---
Closing all RESOLVED FIXED bugs older than 0.9.54.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10443
Summary: Window movement graphics trashing in virtual desktop
mode
Product: Wine
Version: 0.9.49.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Hi,
Since approximately Wine 0.9.47, there is a problem with window movement when
using Wine in "virtual deaktop" mode.
After moving windows around, "trash" is left in the desktop window from the
highlighted borders.
To demonstrate this, use winecfg to enable virtual desktop mode, then run
wine winhelp
and move the winhelp window around several times and observe the graphics
problem.
I'm using a 32-bit x86 PC running Ubuntu 7.10, with Wine 0.9.49 from
winehq.com.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.