Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TracyTexture.hpp « server - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87e03f047a6b92872985da9dd0f982fc69819555 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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