mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
14 lines
216 B
C++
14 lines
216 B
C++
#ifndef __TRACYTEXTURE_HPP__
|
|
#define __TRACYTEXTURE_HPP__
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
void* MakeTexture();
|
|
void FreeTexture( void* tex );
|
|
void UpdateTexture( void* tex, const char* data, int w, int h, bool etc );
|
|
|
|
}
|
|
|
|
#endif
|