~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/vulkan/runtime/vk_device.c

  • Committer: mmach
  • Date: 2023-11-02 21:31:35 UTC
  • Revision ID: netbit73@gmail.com-20231102213135-18d4tzh7tj0uz752
2023-11-02 22:11:57

Show diffs side-by-side

added added

removed removed

Lines of Context:
179
179
   device->swapchain_private = NULL;
180
180
#endif /* ANDROID */
181
181
 
 
182
   simple_mtx_init(&device->trace_mtx, mtx_plain);
 
183
 
182
184
   return VK_SUCCESS;
183
185
}
184
186
 
198
200
   }
199
201
#endif /* ANDROID */
200
202
 
 
203
   simple_mtx_destroy(&device->trace_mtx);
 
204
 
201
205
   vk_object_base_finish(&device->base);
202
206
}
203
207