We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b45075 commit 67c6b47Copy full SHA for 67c6b47
bindings.odin
@@ -6,12 +6,11 @@ when ODIN_OS == .Darwin do foreign import tracy "tracy.dylib"
6
when ODIN_OS == .Windows do foreign import tracy "tracy.lib"
7
when ODIN_OS == .Linux do foreign import tracy "tracy.so"
8
9
-TracyPlotFormatEnum :: enum i32
10
-{
+TracyPlotFormatEnum :: enum i32 {
11
TracyPlotFormatNumber,
12
TracyPlotFormatMemory,
13
TracyPlotFormatPercentage,
14
- TracyPlotFormatWatt
+ TracyPlotFormatWatt,
15
}
16
17
___tracy_source_location_data :: struct {
wrapper.odin
@@ -1,7 +1,6 @@
1
package tracy
2
3
import "core:c"
4
-import "core:strings"
5
TRACY_ENABLE :: #config(TRACY_ENABLE, false)
TRACY_CALLSTACK :: #config(TRACY_CALLSTACK, 5)
0 commit comments