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

Allow creating RGBA textures.

This commit is contained in:
Bartosz Taudul
2022-07-26 01:49:19 +02:00
parent 2c31ba8016
commit 0c36bfba5d
2 changed files with 8 additions and 0 deletions
+1
View File
@@ -9,6 +9,7 @@ namespace tracy
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 );
}