tracy/server/TracyTexture.hpp

18 lines
365 B
C++
Raw Normal View History

2019-06-06 20:07:56 +00:00
#ifndef __TRACYTEXTURE_HPP__
#define __TRACYTEXTURE_HPP__
#include <functional>
2019-06-06 20:07:56 +00:00
namespace tracy
{
2022-10-15 10:56:19 +00:00
void InitTexture();
2019-06-06 20:07:56 +00:00
void* MakeTexture();
void FreeTexture( void* tex, void(*runOnMainThread)(std::function<void()>, bool) );
2019-08-15 14:29:50 +00:00
void UpdateTexture( void* tex, const char* data, int w, int h );
2022-07-25 23:49:19 +00:00
void UpdateTextureRGBA( void* tex, void* data, int w, int h );
2019-06-06 20:07:56 +00:00
}
#endif