1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Add texture wrapper.

This commit is contained in:
Bartosz Taudul
2019-06-06 22:07:56 +02:00
parent af56f41e32
commit 82d4fe7236
4 changed files with 52 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#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 );
}
#endif