mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 20:15:15 +02:00
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
//
|
|
// Created by Bradley Austin Davis on 2016/12/12
|
|
// Copyright 2013-2016 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
|
|
//
|
|
|
|
#pragma once
|
|
#ifndef hifi_TestScriptingInterface_h
|
|
#define hifi_TestScriptingInterface_h
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
class TestScriptingInterface : public QObject {
|
|
Q_OBJECT
|
|
|
|
public slots:
|
|
static TestScriptingInterface* getInstance();
|
|
|
|
/**jsdoc
|
|
* Exits the application
|
|
*/
|
|
void quit();
|
|
|
|
/**jsdoc
|
|
* Waits for all texture transfers to be complete
|
|
*/
|
|
void waitForTextureIdle();
|
|
|
|
/**jsdoc
|
|
* Waits for all pending downloads to be complete
|
|
*/
|
|
void waitForDownloadIdle();
|
|
|
|
/**jsdoc
|
|
* Waits for all pending downloads and texture transfers to be complete
|
|
*/
|
|
void waitIdle();
|
|
|
|
/**jsdoc
|
|
* Start recording Chrome compatible tracing events
|
|
* logRules can be used to specify a set of logging category rules to limit what gets captured
|
|
*/
|
|
bool startTracing(QString logrules = "");
|
|
|
|
/**jsdoc
|
|
* Stop recording Chrome compatible tracing events and serialize recorded events to a file
|
|
* Using a filename with a .gz extension will automatically compress the output file
|
|
*/
|
|
bool stopTracing(QString filename);
|
|
};
|
|
|
|
#endif // hifi_TestScriptingInterface_h
|