Many stupid changes

This commit is contained in:
Dynamitos
2024-10-18 19:01:04 +02:00
parent 7623d647ee
commit 1193406dd8
13 changed files with 419 additions and 117 deletions
+7 -4
View File
@@ -29,9 +29,12 @@ struct UpdateCB
struct DebugStruct
{
uint3 neighbours;
int status;
}
int maxRequiredMemory;
int usedMemory;
uint memoryChange;
uint twinID;
};
struct ComputeParams
{
@@ -59,6 +62,6 @@ struct ComputeParams
RWStructuredBuffer<uint> modifiedBisectorIndices;
RWStructuredBuffer<float4> lebPositionBuffer;
StructuredBuffer<float3x3> lebMatrixCache;
RWStructuredBuffer<DebugStruct> debugBuffer;
globallycoherent RWStructuredBuffer<DebugStruct> debugBuffer;
};
ParameterBlock<ComputeParams> pParams;