LG1PclAmbienceStencil: allocate stencils in constructor
This commit is contained in:
@@ -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.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user