1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-28 20:23:51 +00:00
tracy/server/TracyTexture.hpp
2020-08-15 15:02:36 +02:00

16 lines
276 B
C++

#ifndef __TRACYTEXTURE_HPP__
#define __TRACYTEXTURE_HPP__
#include <functional>
namespace tracy
{
void* MakeTexture();
void FreeTexture( void* tex, void(*runOnMainThread)(std::function<void()>) );
void UpdateTexture( void* tex, const char* data, int w, int h );
}
#endif