LG1PclAmbienceStencil: allocate stencils in constructor

This commit is contained in:
2025-11-26 13:00:24 -04:00
parent 8eb7eaba3d
commit e51d371f58
4 changed files with 68 additions and 5 deletions
+6
View File
@@ -45,6 +45,12 @@ public:
Stencil() = default;
virtual ~Stencil() = default;
// Non-copyable, non-movable (stencils are constructed in place)
Stencil(const Stencil&) = delete;
Stencil& operator=(const Stencil&) = delete;
Stencil(Stencil&&) = delete;
Stencil& operator=(Stencil&&) = delete;
/**
* Returns true if the Stencil has data, false otherwise.
*/