We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8591092 commit 123b303Copy full SHA for 123b303
1 file changed
tutorials/common/tutorial/scenegraph.h
@@ -318,6 +318,7 @@ namespace embree
318
319
struct TransformNode : public Node
320
{
321
+ ALIGNED_STRUCT;
322
TransformNode (const AffineSpace3fa& xfm, const Ref<Node>& child)
323
: xfm(xfm), child(child) {}
324
@@ -347,6 +348,8 @@ namespace embree
347
348
template<typename Light>
349
struct LightNode : public Node
350
351
352
+
353
LightNode(const Light& light)
354
: light(light) {}
355
@@ -355,6 +358,8 @@ namespace embree
358
356
359
struct MaterialNode : public Node
357
360
361
362
363
MaterialNode(const Material& material)
364
: material(material) {}
365
0 commit comments