mirror of
https://github.com/overte-org/overte.git
synced 2025-06-04 04:02:05 +02:00
24 lines
558 B
C++
24 lines
558 B
C++
//
|
|
// OctreeTests.h
|
|
// tests/octree/src
|
|
//
|
|
// Created by Brad Hefta-Gaub on 06/04/2014.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_OctreeTests_h
|
|
#define hifi_OctreeTests_h
|
|
|
|
namespace OctreeTests {
|
|
|
|
void propertyFlagsTests(bool verbose);
|
|
void byteCountCodingTests(bool verbose);
|
|
void modelItemTests(bool verbose);
|
|
|
|
void runAllTests(bool verbose);
|
|
}
|
|
|
|
#endif // hifi_OctreeTests_h
|