mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-03 21:58:26 +02:00
d3d1x: initialize the mutex
This commit is contained in:
parent
440129521c
commit
22762012d1
1 changed files with 5 additions and 0 deletions
|
|
@ -675,6 +675,11 @@ struct maybe_mutex_t<true>
|
|||
{
|
||||
pipe_mutex mutex;
|
||||
|
||||
maybe_mutex_t()
|
||||
{
|
||||
pipe_mutex_init(mutex);
|
||||
}
|
||||
|
||||
void lock()
|
||||
{
|
||||
pipe_mutex_lock(mutex);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue