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

Load custom mip chain for zigzags.

This commit is contained in:
Bartosz Taudul
2023-04-29 13:10:58 +02:00
parent 657bf7d44c
commit e1e4699a52
12 changed files with 91 additions and 29 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ void* MakeTexture( bool zigzag = false );
void FreeTexture( void* tex, void(*runOnMainThread)(const 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 );
void MakeMipMaps( void* tex );
void UpdateTextureRGBAMips( void* tex, void** data, int* w, int* h, size_t mips );
}