1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Vulkan and OpenGL must share idx pool.

This commit is contained in:
Bartosz Taudul
2018-06-18 01:10:43 +02:00
parent 021dd853b9
commit 7a23f677dd
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -25,7 +25,7 @@
namespace tracy
{
extern std::atomic<uint16_t> s_vkCtxCounter;
extern std::atomic<uint16_t> s_gpuCtxCounter;
class VkCtx
{
@@ -37,7 +37,7 @@ public:
VkCtx( VkPhysicalDevice physdev, VkDevice device, VkQueue queue, VkCommandBuffer cmdbuf )
: m_device( device )
, m_queue( queue )
, m_context( s_vkCtxCounter.fetch_add( 1, std::memory_order_relaxed ) )
, m_context( s_gpuCtxCounter.fetch_add( 1, std::memory_order_relaxed ) )
, m_head( 0 )
, m_tail( 0 )
, m_oldCnt( 0 )