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

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2019-06-06 23:07:56 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-06-06 23:14:51 +0300
commit82d4fe7236a9a8129bb388e50b5225004508868c (patch)
tree77c45eb5de06b638930647889a4a4a8a0da4fcc3 /server/TracyTexture.hpp
parentaf56f41e3224e7df54afaa516946d518b695c7a2 (diff)
Add texture wrapper.
Diffstat (limited to 'server/TracyTexture.hpp')
-rw-r--r--server/TracyTexture.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/server/TracyTexture.hpp b/server/TracyTexture.hpp
new file mode 100644
index 00000000..87e03f04
--- /dev/null
+++ b/server/TracyTexture.hpp
@@ -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