We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4ffc56e + 882022a commit 182daddCopy full SHA for 182dadd
crest/Assets/Crest/Crest/Scripts/Collision/QueryBase.cs
@@ -25,7 +25,8 @@ public abstract class QueryBase
25
protected abstract string QueryShaderName { get; }
26
protected abstract string QueryKernelName { get; }
27
28
- const int s_maxRequests = 4;
+ // 4 was enough for a long time, but Linux setups seems to demand 7
29
+ const int s_maxRequests = 7;
30
const int s_maxGuids = 1024;
31
32
protected virtual ComputeShader ShaderProcessQueries => _shaderProcessQueries;
0 commit comments