Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logging.h « intern « libmv « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41373da96dfc0830951162aa61a3e49dd2c70502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2011 Blender Foundation. All rights reserved. */

#ifndef LIBMV_C_API_LOGGING_H_
#define LIBMV_C_API_LOGGING_H_

#ifdef __cplusplus
extern "C" {
#endif

// Initialize GLog logging.
void libmv_initLogging(const char* argv0);

// Switch Glog to debug logging level.
void libmv_startDebugLogging(void);

// Set GLog logging verbosity level.
void libmv_setLoggingVerbosity(int verbosity);

#ifdef __cplusplus
}
#endif

#endif  // LIBMV_C_API_LOGGING_H_