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
Oliver Behnke
graphicsframework
Commits
79c6a997
Commit
79c6a997
authored
Nov 18, 2008
by
Oliver Bock
Browse files
Inlining methods that are called in render loop
parent
b6a2f40b
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/starsphere/Starsphere.h
View file @
79c6a997
...
...
@@ -147,7 +147,7 @@ protected:
* Note: for this engine this also includes the "BOINC Statistics"
* as it is top-aligned to the "Search Information".
*/
virtual
void
renderSearchInformation
()
=
0
;
inline
virtual
void
renderSearchInformation
()
=
0
;
/**
* \brief Render additional observatories
...
...
@@ -161,7 +161,7 @@ protected:
*
* \see StarsphereRadio::renderAdditionalObservatories()
*/
virtual
void
renderAdditionalObservatories
();
inline
virtual
void
renderAdditionalObservatories
();
/**
* \brief This method has to be called in order to update the BOINC client information
...
...
@@ -198,7 +198,7 @@ protected:
};
void
setFeature
(
const
Features
features
,
const
bool
enable
);
bool
isFeature
(
const
Features
features
);
inline
bool
isFeature
(
const
Features
features
);
GLfloat
RAofZenith
(
double
T
,
GLfloat
LONdeg
);
void
sphVertex3D
(
GLfloat
RAdeg
,
GLfloat
DEdeg
,
GLfloat
radius
);
...
...
src/starsphere/StarsphereRadio.h
View file @
79c6a997
...
...
@@ -106,7 +106,7 @@ private:
* For this specific implementation this also includes the "BOINC Statistics"
* as it is top-aligned to the "Search Information".
*/
void
renderSearchInformation
();
inline
void
renderSearchInformation
();
/**
* \brief Renders the Arecibo observatory
...
...
@@ -114,7 +114,7 @@ private:
* This specific implementation invokes a single display list rendering the
* Arecibo observatory. It overrides the (empty) base class implementation.
*/
void
renderAdditionalObservatories
();
inline
void
renderAdditionalObservatories
();
/**
* \brief Creates an OpenGL call list which contains the static power spectrum coordinate system
...
...
src/starsphere/StarsphereS5R3.h
View file @
79c6a997
...
...
@@ -99,7 +99,7 @@ private:
* For this specific implementation this also includes the "BOINC Statistics"
* as it is top-aligned to the "Search Information".
*/
void
renderSearchInformation
();
inline
void
renderSearchInformation
();
/**
* \brief Generates the OpenGL call lists for the displayed observatories
...
...
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