mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 19:53:29 +02:00
inline setMaxQueryPacketsPerSecond
This commit is contained in:
parent
635f49258d
commit
ddb907ae5f
2 changed files with 1 additions and 6 deletions
libraries/octree/src
|
@ -20,11 +20,6 @@ OctreeQuery::OctreeQuery() {
|
|||
_maxQueryPPS = DEFAULT_MAX_OCTREE_PPS;
|
||||
}
|
||||
|
||||
void OctreeQuery::setMaxQueryPacketsPerSecond(int maxQueryPPS) {
|
||||
_maxQueryPPS = maxQueryPPS;
|
||||
}
|
||||
|
||||
|
||||
int OctreeQuery::getBroadcastData(unsigned char* destinationBuffer) {
|
||||
unsigned char* bufferStart = destinationBuffer;
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@ public slots:
|
|||
void setWantDelta(bool wantDelta) { _wantDelta = wantDelta; }
|
||||
void setWantOcclusionCulling(bool wantOcclusionCulling) { _wantOcclusionCulling = wantOcclusionCulling; }
|
||||
void setWantCompression(bool wantCompression) { _wantCompression = wantCompression; }
|
||||
void setMaxQueryPacketsPerSecond(int maxQueryPPS);
|
||||
void setMaxQueryPacketsPerSecond(int maxQueryPPS) { _maxQueryPPS = maxQueryPPS; }
|
||||
void setOctreeSizeScale(float octreeSizeScale) { _octreeElementSizeScale = octreeSizeScale; }
|
||||
void setBoundaryLevelAdjust(int boundaryLevelAdjust) { _boundaryLevelAdjust = boundaryLevelAdjust; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue