Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
d36bf3ec
Commit
d36bf3ec
authored
Jun 28, 2019
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missing overrides
parent
7a154d6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
libs_required/ACG/Scenegraph/LineNode.hh
libs_required/ACG/Scenegraph/LineNode.hh
+7
-7
No files found.
libs_required/ACG/Scenegraph/LineNode.hh
View file @
d36bf3ec
...
...
@@ -119,24 +119,24 @@ public:
ACG_CLASSNAME
(
LineNode
);
/// return available draw modes
DrawModes
::
DrawMode
availableDrawModes
()
const
;
DrawModes
::
DrawMode
availableDrawModes
()
const
override
;
/// update bounding box
void
boundingBox
(
Vec3d
&
_bbMin
,
Vec3d
&
_bbMax
);
void
boundingBox
(
Vec3d
&
_bbMin
,
Vec3d
&
_bbMax
)
override
;
/// set depth function (needed for lasso selection so that the line can be draw in pseudo-2D)
void
enter
(
GLState
&
_state
,
const
DrawModes
::
DrawMode
&
_drawMode
);
void
enter
(
GLState
&
_state
,
const
DrawModes
::
DrawMode
&
_drawMode
)
override
;
/// draw lines and normals
void
draw
(
GLState
&
_state
,
const
DrawModes
::
DrawMode
&
_drawMode
);
void
draw
(
GLState
&
_state
,
const
DrawModes
::
DrawMode
&
_drawMode
)
override
;
void
drawCompat
(
GLState
&
_state
,
const
DrawModes
::
DrawMode
&
_drawMode
);
/// reset depth function to what it was before enter()
void
leave
(
GLState
&
_state
,
const
DrawModes
::
DrawMode
&
_drawMode
);
void
leave
(
GLState
&
_state
,
const
DrawModes
::
DrawMode
&
_drawMode
)
override
;
/// Draw the line using the GL picking name stack
void
pick
(
GLState
&
_state
,
PickTarget
_target
);
void
pick
(
GLState
&
_state
,
PickTarget
_target
)
override
;
void
pickCompat
(
GLState
&
_state
,
PickTarget
_target
);
/// reserve mem for _n lines
...
...
@@ -212,7 +212,7 @@ public:
* @param _drawMode The active draw mode
* @param _mat Current material
*/
void
getRenderObjects
(
IRenderer
*
_renderer
,
GLState
&
_state
,
const
DrawModes
::
DrawMode
&
_drawMode
,
const
ACG
::
SceneGraph
::
Material
*
_mat
);
void
getRenderObjects
(
IRenderer
*
_renderer
,
GLState
&
_state
,
const
DrawModes
::
DrawMode
&
_drawMode
,
const
ACG
::
SceneGraph
::
Material
*
_mat
)
override
;
protected:
...
...
Write
Preview
Markdown
is supported
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