Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenFlipper-Free
OpenFlipper-Free
Commits
e0c4c990
Commit
e0c4c990
authored
Nov 16, 2015
by
Jan Möbius
Browse files
Try to silence cppcheck warning on unused variable
parent
667de4ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
ACG/Scenegraph/StatusNodesT.cc
View file @
e0c4c990
...
...
@@ -310,8 +310,9 @@ draw(GLState& _state, const DrawModes::DrawMode& _drawMode)
// using static bitflags for drawmodes is no longer recommended
// read from properties instead:
bool
shaded
=
false
,
smooth
=
false
,
bool
shaded
=
false
;
bool
smooth
=
false
;
bool
wires
=
((
this
->
drawMode
()
==
DrawModes
::
DEFAULT
)
||
this
->
drawMode
().
getLayerIndexByPrimitive
(
DrawModes
::
PRIMITIVE_WIREFRAME
)
>=
0
||
_drawMode
.
getLayerIndexByPrimitive
(
DrawModes
::
PRIMITIVE_WIREFRAME
)
>=
0
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment