mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Dispatch compute is always in sequential mode.
This commit is contained in:
parent
8c1518f259
commit
3838492e8d
1 changed files with 1 additions and 1 deletions
|
@ -775,7 +775,7 @@ namespace bgfx
|
|||
{
|
||||
m_key.m_depth = 0;
|
||||
m_key.m_view = _id;
|
||||
m_key.m_seq = s_ctx->m_seq[_id] & s_ctx->m_seqMask[_id];
|
||||
m_key.m_seq = s_ctx->m_seq[_id];
|
||||
s_ctx->m_seq[_id]++;
|
||||
|
||||
uint64_t key = m_key.encodeCompute();
|
||||
|
|
Loading…
Reference in a new issue