mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-15 14:10:11 +00:00
4c06fd27b3
Make btQuickprof thread safe Add option in btQuickprof to override custom timing profile (btSetCustomEnterProfileZoneFunc, btSetCustomLeaveProfileZoneFunc) remove b3Printf in a user/physics thread (those added added, while drawing the GUI running in the main thread)
14 lines
405 B
C++
14 lines
405 B
C++
#ifndef GWEN_PROFILE_WINDOW_H
|
|
#define GWEN_PROFILE_WINDOW_H
|
|
|
|
class MyProfileWindow* setupProfileWindow(struct GwenInternalData* data);
|
|
void processProfileData(MyProfileWindow* window, bool idle);
|
|
void profileWindowSetVisible(MyProfileWindow* window, bool visible);
|
|
bool isProfileWindowVisible(MyProfileWindow* window);
|
|
|
|
void destroyProfileWindow(MyProfileWindow* window);
|
|
|
|
#endif//GWEN_PROFILE_WINDOW_H
|
|
|
|
|