livoxGen1: Rename PcloudXyzStimulusBuffer=>MeshStimulusBuffer

This commit is contained in:
2025-11-16 00:10:33 -04:00
parent c060463e82
commit 336bc52a9d
5 changed files with 49 additions and 48 deletions
@@ -117,14 +117,14 @@ PcloudStimulusProducer::getOrCreateAttachedStimulusBuffer(
if (existingBuffer)
{ return existingBuffer; }
// Create new PcloudXyzStimulusBuffer (for now, always use XYZ type)
auto buffer = std::make_shared<PcloudXyzStimulusBuffer>(
// Create new MeshStimulusBuffer (for now, always use XYZ type)
auto buffer = std::make_shared<MeshStimulusBuffer>(
*this, deviceAttachmentSpec, histbuffMs, openClInputConstraints);
// Add to collection
attachedStimulusBuffers.push_back(buffer);
// Update specialized member
xyzStimulusBuffer = buffer;
meshStimulusBuffer = buffer;
return buffer;
}