RetroArch/performance.h

49 lines
1.4 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
2013-01-01 00:37:37 +00:00
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
* Copyright (C) 2011-2013 - Daniel De Matteis
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _RARCH_PERF_H
#define _RARCH_PERF_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
2013-02-08 11:05:22 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2013-02-05 08:41:10 +00:00
#include "boolean.h"
#include <stdint.h>
retro_perf_tick_t rarch_get_perf_counter(void);
retro_time_t rarch_get_time_usec(void);
void rarch_perf_register(struct retro_perf_counter *perf);
void rarch_perf_logs(void);
void rarch_get_cpu_features(unsigned *cpu);
void rarch_perf_init(void *data, bool enable);
void rarch_perf_start(void *data, bool enable);
void rarch_perf_stop(void *data, bool enable);
void rarch_perf_log(void *data, const char *funcname, bool enable);
2013-02-08 11:05:22 +00:00
#ifdef __cplusplus
}
#endif
#endif