mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-07 23:10:45 +02:00
Remove unused getter/setter
This commit is contained in:
parent
10ec36874f
commit
8175b4bb44
1 changed files with 0 additions and 8 deletions
|
@ -43,12 +43,6 @@ class LODManager : public Dependency {
|
|||
SINGLETON_DEPENDENCY
|
||||
|
||||
public:
|
||||
// TODO: actually use them
|
||||
bool shouldRenderTableNeedsRebuilding() const { return _shouldRenderTableNeedsRebuilding; }
|
||||
void setShouldRenderTableNeedsRebuilding(bool shouldRenderTableNeedsRebuilding) {
|
||||
_shouldRenderTableNeedsRebuilding = shouldRenderTableNeedsRebuilding;
|
||||
}
|
||||
|
||||
// TODO: replace bumpSettings()
|
||||
void setAutomaticAvatarLOD(bool automaticAvatarLOD) { _automaticAvatarLOD = automaticAvatarLOD; }
|
||||
bool getAutomaticAvatarLOD() const { return _automaticAvatarLOD; }
|
||||
|
@ -91,8 +85,6 @@ private:
|
|||
SimpleMovingAverage _fpsAverage = FIVE_SECONDS_OF_FRAMES;
|
||||
SimpleMovingAverage _fastFPSAverage = ONE_SECOND_OF_FRAMES;
|
||||
|
||||
|
||||
// TODO: actually use them
|
||||
bool _shouldRenderTableNeedsRebuilding = true;
|
||||
QMap<float, float> _shouldRenderTable;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue