mirror of
https://github.com/Ed94/VEFontCache-Odin.git
synced 2025-08-04 22:22:43 -07:00
18 lines
435 B
Odin
18 lines
435 B
Odin
package vefontcache
|
|
|
|
// Add profiling hookup here
|
|
|
|
// import ""
|
|
|
|
@(deferred_none = profile_end, disabled = DISABLE_PROFILING)
|
|
profile :: #force_inline proc "contextless" ( name : string, loc := #caller_location ) {
|
|
}
|
|
|
|
@(disabled = DISABLE_PROFILING)
|
|
profile_begin :: #force_inline proc "contextless" ( name : string, loc := #caller_location ) {
|
|
}
|
|
|
|
@(disabled = DISABLE_PROFILING)
|
|
profile_end :: #force_inline proc "contextless" () {
|
|
}
|