mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 09:43:25 +02:00
Fix ShapeKey::withoutCullFace to set, not reset
This commit is contained in:
parent
a7bafed61b
commit
281ba3c3ea
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ public:
|
|||
Builder& withDepthOnly() { _flags.set(DEPTH_ONLY); return (*this); }
|
||||
Builder& withDepthBias() { _flags.set(DEPTH_BIAS); return (*this); }
|
||||
Builder& withWireframe() { _flags.set(WIREFRAME); return (*this); }
|
||||
Builder& withoutCullFace() { _flags.reset(NO_CULL_FACE); return (*this); }
|
||||
Builder& withoutCullFace() { _flags.set(NO_CULL_FACE); return (*this); }
|
||||
|
||||
Builder& withOwnPipeline() { _flags.set(OWN_PIPELINE); return (*this); }
|
||||
Builder& invalidate() { _flags.set(INVALID); return (*this); }
|
||||
|
|
Loading…
Reference in a new issue