mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
18 lines
365 B
C++
18 lines
365 B
C++
#ifndef __TRACYTEXTURE_HPP__
|
|
#define __TRACYTEXTURE_HPP__
|
|
|
|
#include <functional>
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
void InitTexture();
|
|
void* MakeTexture();
|
|
void FreeTexture( void* tex, void(*runOnMainThread)(std::function<void()>, bool) );
|
|
void UpdateTexture( void* tex, const char* data, int w, int h );
|
|
void UpdateTextureRGBA( void* tex, void* data, int w, int h );
|
|
|
|
}
|
|
|
|
#endif
|