Show More
Commit Description:
Add timers for Simulation and various engines...
Commit Description:
Add timers for Simulation and various engines Starting to add additional timers for different stages of the process of updating in order to get more insight into what is slowing it down. The update takes 9ms, which is much longer than it used to. Engine-specific timers are coming later.
File last commit:
Show/Diff file:
Action:
FNA/lib/FAudio/cpp/XAPOFX.h
48 lines | 1008 B | text/x-c | CLexer
Early working version (including all dependencies, lol).
r0 #ifndef FAUDIO_CPP_XAPOFX_H
#define FAUDIO_CPP_XAPOFX_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#if defined _WIN32 || defined __CYGWIN__
#define DLLIMPORT __declspec(dllimport)
#define DLLEXPORT __declspec(dllexport)
#else
#if __GNUC__ >= 4
#define DLLIMPORT __attribute__((visibility ("default")))
#define DLLEXPORT __attribute__((visibility ("default")))
#else
#define DLLIMPORT
#define DLLEXPORT
#endif
#endif
#ifdef FAUDIOCPP_EXPORTS
#define FAPOFXCPP_API extern "C" DLLEXPORT HRESULT __cdecl
#else
#define FAPOFXCPP_API extern "C" DLLIMPORT HRESULT __cdecl
#endif
#ifndef XAPOFX_VERSION
#define XAPOFX_VERSION 5
#endif
#include <FAPOFX.h>
#if XAUDIO2_VERSION >=8
FAPOFXCPP_API CreateFX(
REFCLSID clsid,
IUnknown **pEffect,
const void *pInitData,
UINT32 InitDataByteSize
);
#else
FAPOFXCPP_API CreateFX(REFCLSID clsid, IUnknown **pEffect);
#endif // XAUDIO2_VERSION >=8
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* FAUDIO_CPP_XAPOFX_H */