LG1PCloudAmbStncl: Use RangeDescriptor obj instead of StagingBuffer

We directly use an instance of RangeDescriptor to avoid incurring
the memory cost of using a StagingBuffer here. It's unnecessary
since these stencils will always be 32bits large.
This commit is contained in:
2025-11-28 03:34:35 -04:00
parent 1f35dba2ca
commit 0116523a66
6 changed files with 16 additions and 60 deletions
@@ -81,7 +81,7 @@ public:
// Construct stencils and add to list (FIFO behavior)
for (size_t i = 0; i < nStencils; ++i) {
stencils.emplace_back(nDgramsPerFrame_);
stencils.emplace_back();
}
}