Files
codegirl-games/flame/crowd-20260809-140133.svg
T
2026-08-09 14:05:28 -07:00

1863 lines
82 KiB
XML

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="502" onload="init(evt)" viewBox="0 0 1200 502" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
if (currentSearchTerm === null) return;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="502.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="485" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="485" > </text>
<g id="frames">
<g >
<title>_dbus_atomic_inc (10,499,242 samples, 0.13%)</title><rect x="936.4" y="261" width="1.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="939.40" y="271.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (430,687,719 samples, 5.22%)</title><rect x="1085.9" y="293" width="61.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1088.92" y="303.5" >[libvu..</text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (2,082,580,939 samples, 25.24%)</title><rect x="541.5" y="325" width="297.8" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="544.48" y="335.5" >[libSDL3.so.0.4.12]</text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (8,815,693 samples, 0.11%)</title><rect x="904.4" y="181" width="1.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="907.38" y="191.5" ></text>
</g>
<g >
<title>dbus_connection_dispatch (65,155,069 samples, 0.79%)</title><rect x="937.9" y="293" width="9.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="940.90" y="303.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (1,486,441 samples, 0.02%)</title><rect x="37.0" y="213" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="40.03" y="223.5" ></text>
</g>
<g >
<title>[libc.so.6] (16,942,737 samples, 0.21%)</title><rect x="42.3" y="373" width="2.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="45.34" y="383.5" ></text>
</g>
<g >
<title>[unknown] (9,695,906 samples, 0.12%)</title><rect x="44.8" y="405" width="1.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="47.76" y="415.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (12,277,157 samples, 0.15%)</title><rect x="37.0" y="357" width="1.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="40.03" y="367.5" ></text>
</g>
<g >
<title>main::main (517,747,583 samples, 6.27%)</title><rect x="1073.9" y="421" width="74.0" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1076.86" y="431.5" >main::main</text>
</g>
<g >
<title>[libvulkan_radeon.so] (69,483,504 samples, 0.84%)</title><rect x="1137.6" y="213" width="9.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1140.57" y="223.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (8,779,829 samples, 0.11%)</title><rect x="948.9" y="277" width="1.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="951.93" y="287.5" ></text>
</g>
<g >
<title>ioctl (11,282,932 samples, 0.14%)</title><rect x="736.4" y="213" width="1.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="739.40" y="223.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (18,109,733 samples, 0.22%)</title><rect x="903.0" y="245" width="2.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="906.05" y="255.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (73,914,686 samples, 0.90%)</title><rect x="650.6" y="213" width="10.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="653.56" y="223.5" ></text>
</g>
<g >
<title>dbus_connection_send_with_reply (1,925,277 samples, 0.02%)</title><rect x="947.2" y="245" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="950.24" y="255.5" ></text>
</g>
<g >
<title>_dbus_atomic_dec (78,492,210 samples, 0.95%)</title><rect x="917.1" y="229" width="11.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="920.06" y="239.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="229" width="4.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1150.90" y="239.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (11,173,424 samples, 0.14%)</title><rect x="941.8" y="245" width="1.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="944.76" y="255.5" ></text>
</g>
<g >
<title>[libc.so.6] (7,087,522,107 samples, 85.90%)</title><rect x="46.2" y="389" width="1013.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="49.15" y="399.5" >[libc.so.6]</text>
</g>
<g >
<title>drmIoctl (8,715,655 samples, 0.11%)</title><rect x="771.5" y="245" width="1.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="774.48" y="255.5" ></text>
</g>
<g >
<title>[libc.so.6] (11,846,548 samples, 0.14%)</title><rect x="648.9" y="213" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="651.86" y="223.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (41,890,380 samples, 0.51%)</title><rect x="1141.5" y="197" width="6.0" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1144.52" y="207.5" ></text>
</g>
<g >
<title>[libffi.so.8.4.1] (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="229" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1150.51" y="239.5" ></text>
</g>
<g >
<title>_dl_catch_exception (12,277,157 samples, 0.15%)</title><rect x="37.0" y="341" width="1.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="40.03" y="351.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,989,432 samples, 0.11%)</title><rect x="781.1" y="245" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="784.12" y="255.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (95,065,629 samples, 1.15%)</title><rect x="724.4" y="229" width="13.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="727.42" y="239.5" ></text>
</g>
<g >
<title>runtime::bounds_check_error (8,409,654 samples, 0.10%)</title><rect x="887.2" y="309" width="1.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="890.21" y="319.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (472,928,095 samples, 5.73%)</title><rect x="105.5" y="293" width="67.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="108.54" y="303.5" >[libvul..</text>
</g>
<g >
<title>_dbus_marshal_write_basic (1,925,277 samples, 0.02%)</title><rect x="947.2" y="133" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="950.24" y="143.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (270,992,115 samples, 3.28%)</title><rect x="622.4" y="277" width="38.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="625.37" y="287.5" >[li..</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (12,277,157 samples, 0.15%)</title><rect x="37.0" y="277" width="1.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="40.03" y="287.5" ></text>
</g>
<g >
<title>malloc (13,180,184 samples, 0.16%)</title><rect x="749.8" y="245" width="1.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="752.76" y="255.5" ></text>
</g>
<g >
<title>[libc.so.6] (15,386,350 samples, 0.19%)</title><rect x="707.7" y="229" width="2.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="710.73" y="239.5" ></text>
</g>
<g >
<title>engine::texture_run_len (27,611,194 samples, 0.33%)</title><rect x="884.5" y="325" width="3.9" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="887.47" y="335.5" ></text>
</g>
<g >
<title>ffi_call (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="261" width="0.4" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="1150.51" y="271.5" ></text>
</g>
<g >
<title>[libc.so.6] (38,761,450 samples, 0.47%)</title><rect x="775.6" y="245" width="5.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="778.58" y="255.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="293" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1150.51" y="303.5" ></text>
</g>
<g >
<title>copy (1,925,277 samples, 0.02%)</title><rect x="947.2" y="69" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="950.24" y="79.5" ></text>
</g>
<g >
<title>engine::events (396,687,494 samples, 4.81%)</title><rect x="890.5" y="341" width="56.7" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="893.49" y="351.5" >engine..</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (12,277,157 samples, 0.15%)</title><rect x="37.0" y="309" width="1.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="40.03" y="319.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="373" width="0.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1150.51" y="383.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (384,216,549 samples, 4.66%)</title><rect x="1092.6" y="245" width="54.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1095.56" y="255.5" >[libv..</text>
</g>
<g >
<title>cfree (11,646,175 samples, 0.14%)</title><rect x="826.7" y="245" width="1.7" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="829.74" y="255.5" ></text>
</g>
<g >
<title>__close (8,982,260 samples, 0.11%)</title><rect x="169.2" y="245" width="1.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="172.20" y="255.5" ></text>
</g>
<g >
<title>[libGLX_nvidia.so.610.43.03] (15,373,130 samples, 0.19%)</title><rect x="38.8" y="373" width="2.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="41.79" y="383.5" ></text>
</g>
<g >
<title>wl_display_prepare_read_queue (18,730,489 samples, 0.23%)</title><rect x="905.6" y="277" width="2.7" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="908.64" y="287.5" ></text>
</g>
<g >
<title>[unknown] (98,869,118 samples, 1.20%)</title><rect x="1059.7" y="405" width="14.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1062.72" y="415.5" ></text>
</g>
<g >
<title> (208,862,261 samples, 2.53%)</title><rect x="494.2" y="309" width="29.8" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="497.17" y="319.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (9,601,235 samples, 0.12%)</title><rect x="906.9" y="261" width="1.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="909.94" y="271.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (18,109,733 samples, 0.22%)</title><rect x="903.0" y="261" width="2.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="906.05" y="271.5" ></text>
</g>
<g >
<title>drmIoctl (22,687,817 samples, 0.27%)</title><rect x="166.0" y="213" width="3.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="168.95" y="223.5" ></text>
</g>
<g >
<title>runtime::map_seed_from_map_data (6,245,700 samples, 0.08%)</title><rect x="366.4" y="309" width="0.9" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="369.38" y="319.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (19,573,653 samples, 0.24%)</title><rect x="1144.7" y="181" width="2.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1147.71" y="191.5" ></text>
</g>
<g >
<title>ioctl (98,869,210 samples, 1.20%)</title><rect x="1059.7" y="421" width="14.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1062.72" y="431.5" ></text>
</g>
<g >
<title>dbus_bus_register (1,937,451 samples, 0.02%)</title><rect x="947.2" y="277" width="0.3" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="950.24" y="287.5" ></text>
</g>
<g >
<title>runtime::bounds_check_error (44,073,741 samples, 0.53%)</title><rect x="360.1" y="309" width="6.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="363.08" y="319.5" ></text>
</g>
<g >
<title>wl_proxy_marshal_array_flags (292,998,598 samples, 3.55%)</title><rect x="793.6" y="261" width="41.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="796.57" y="271.5" >wl_..</text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (53,605,662 samples, 0.65%)</title><rect x="785.9" y="261" width="7.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="788.90" y="271.5" ></text>
</g>
<g >
<title>runtime::bounds_check_error (7,409,143 samples, 0.09%)</title><rect x="889.4" y="325" width="1.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="892.43" y="335.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (26,936,363 samples, 0.33%)</title><rect x="593.6" y="229" width="3.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="596.63" y="239.5" ></text>
</g>
<g >
<title>[libffi.so.8.4.1] (8,815,693 samples, 0.11%)</title><rect x="904.4" y="197" width="1.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="907.38" y="207.5" ></text>
</g>
<g >
<title>wl_display_dispatch_queue (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="341" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1150.51" y="351.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (74,358,231 samples, 0.90%)</title><rect x="152.4" y="165" width="10.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="155.40" y="175.5" ></text>
</g>
<g >
<title>wl_display_dispatch_queue_timeout (125,026,567 samples, 1.52%)</title><rect x="753.6" y="245" width="17.9" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="756.60" y="255.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="213" width="4.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1150.90" y="223.5" ></text>
</g>
<g >
<title>[libc.so.6] (18,475,434 samples, 0.22%)</title><rect x="147.3" y="229" width="2.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="150.27" y="239.5" ></text>
</g>
<g >
<title>dbus_connection_unref (8,109,134 samples, 0.10%)</title><rect x="946.1" y="277" width="1.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="949.06" y="287.5" ></text>
</g>
<g >
<title>dbus_message_new_error (1,925,277 samples, 0.02%)</title><rect x="947.2" y="213" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="950.24" y="223.5" ></text>
</g>
<g >
<title>[libGLX_nvidia.so.610.43.03] (10,720,180 samples, 0.13%)</title><rect x="37.2" y="213" width="1.6" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="40.25" y="223.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (82,982,986 samples, 1.01%)</title><rect x="151.2" y="213" width="11.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="154.17" y="223.5" ></text>
</g>
<g >
<title>malloc (9,521,812 samples, 0.12%)</title><rect x="741.0" y="229" width="1.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="743.98" y="239.5" ></text>
</g>
<g >
<title>[unknown] (36,997,057 samples, 0.45%)</title><rect x="1068.6" y="389" width="5.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1071.57" y="399.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,164,118 samples, 0.24%)</title><rect x="1149.3" y="181" width="2.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1152.34" y="191.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (479,269,524 samples, 5.81%)</title><rect x="1079.0" y="341" width="68.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1081.97" y="351.5" >[libvul..</text>
</g>
<g >
<title>runtime::memory_equal (109,305,133 samples, 1.32%)</title><rect x="344.4" y="277" width="15.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="347.45" y="287.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,982,260 samples, 0.11%)</title><rect x="169.2" y="213" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="172.20" y="223.5" ></text>
</g>
<g >
<title>clock_gettime (37,717,822 samples, 0.46%)</title><rect x="755.1" y="213" width="5.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="758.11" y="223.5" ></text>
</g>
<g >
<title>runtime::default_hasher_string (194,284,885 samples, 2.35%)</title><rect x="998.1" y="293" width="27.8" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1001.10" y="303.5" >r..</text>
</g>
<g >
<title>[libvulkan.so.1.4.350] (27,680,683 samples, 0.34%)</title><rect x="37.0" y="421" width="4.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="40.03" y="431.5" ></text>
</g>
<g >
<title>cfree (11,038,708 samples, 0.13%)</title><rect x="772.7" y="277" width="1.6" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="775.73" y="287.5" ></text>
</g>
<g >
<title>_dbus_list_pop_first_link (9,911,671 samples, 0.12%)</title><rect x="928.3" y="261" width="1.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="931.28" y="271.5" ></text>
</g>
<g >
<title>_dbus_message_loader_queue_messages (8,038,318 samples, 0.10%)</title><rect x="930.9" y="213" width="1.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="933.86" y="223.5" ></text>
</g>
<g >
<title>[unknown] (8,982,260 samples, 0.11%)</title><rect x="169.2" y="181" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="172.20" y="191.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (82,982,986 samples, 1.01%)</title><rect x="151.2" y="181" width="11.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="154.17" y="191.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (8,469,949 samples, 0.10%)</title><rect x="173.2" y="293" width="1.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="176.17" y="303.5" ></text>
</g>
<g >
<title>_dbus_atomic_inc (9,981,057 samples, 0.12%)</title><rect x="943.4" y="245" width="1.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="946.36" y="255.5" ></text>
</g>
<g >
<title>clock_gettime (8,779,829 samples, 0.11%)</title><rect x="948.9" y="293" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="951.93" y="303.5" ></text>
</g>
<g >
<title>engine::world_to_screen (152,849,797 samples, 1.85%)</title><rect x="472.3" y="325" width="21.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="475.32" y="335.5" >e..</text>
</g>
<g >
<title>pthread_mutex_unlock (9,331,022 samples, 0.11%)</title><rect x="838.0" y="309" width="1.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="840.97" y="319.5" ></text>
</g>
<g >
<title>mem::copy (7,082,577 samples, 0.09%)</title><rect x="888.4" y="325" width="1.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="891.42" y="335.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (396,687,494 samples, 4.81%)</title><rect x="890.5" y="309" width="56.7" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="893.49" y="319.5" >[libSD..</text>
</g>
<g >
<title>pthread_mutex_lock (21,647,186 samples, 0.26%)</title><rect x="914.0" y="229" width="3.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="916.96" y="239.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (82,982,986 samples, 1.01%)</title><rect x="151.2" y="197" width="11.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="154.17" y="207.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (99,088,246 samples, 1.20%)</title><rect x="19.7" y="421" width="14.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="22.71" y="431.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (54,305,938 samples, 0.66%)</title><rect x="589.7" y="245" width="7.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="592.71" y="255.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (431,598,215 samples, 5.23%)</title><rect x="111.4" y="277" width="61.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="114.45" y="287.5" >[libvu..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (170,752,297 samples, 2.07%)</title><rect x="636.7" y="261" width="24.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="639.71" y="271.5" >[..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (479,269,524 samples, 5.81%)</title><rect x="1079.0" y="325" width="68.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1081.97" y="335.5" >[libvul..</text>
</g>
<g >
<title>[libc.so.6] (9,626,811 samples, 0.12%)</title><rect x="733.0" y="197" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="736.01" y="207.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (1,486,441 samples, 0.02%)</title><rect x="37.0" y="181" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="40.03" y="191.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (24,256,186 samples, 0.29%)</title><rect x="939.9" y="261" width="3.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="942.89" y="271.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (2,116,586 samples, 0.03%)</title><rect x="947.2" y="309" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="950.22" y="319.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,254,543 samples, 0.34%)</title><rect x="803.1" y="245" width="4.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="806.12" y="255.5" ></text>
</g>
<g >
<title>strchrnul@plt (7,563,668 samples, 0.09%)</title><rect x="43.7" y="357" width="1.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="46.68" y="367.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,302,549 samples, 0.10%)</title><rect x="88.0" y="229" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="90.99" y="239.5" ></text>
</g>
<g >
<title>_dbus_string_copy_len (1,925,277 samples, 0.02%)</title><rect x="947.2" y="85" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="950.24" y="95.5" ></text>
</g>
<g >
<title>[libnvidia-glcore.so.610.43.03] (10,720,180 samples, 0.13%)</title><rect x="37.2" y="181" width="1.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="40.25" y="191.5" ></text>
</g>
<g >
<title>[libGLX_nvidia.so.610.43.03] (15,373,130 samples, 0.19%)</title><rect x="38.8" y="341" width="2.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="41.79" y="351.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (80,105,432 samples, 0.97%)</title><rect x="21.2" y="389" width="11.5" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="24.23" y="399.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (2,116,586 samples, 0.03%)</title><rect x="947.2" y="325" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="950.22" y="335.5" ></text>
</g>
<g >
<title>runtime::default_hasher (52,788,233 samples, 0.64%)</title><rect x="326.8" y="277" width="7.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="329.82" y="287.5" ></text>
</g>
<g >
<title>vk_icdNegotiateLoaderICDInterfaceVersion (15,373,130 samples, 0.19%)</title><rect x="38.8" y="389" width="2.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="41.79" y="399.5" ></text>
</g>
<g >
<title>wl_display_flush (22,767,114 samples, 0.28%)</title><rect x="765.6" y="229" width="3.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="768.65" y="239.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (8,319,730 samples, 0.10%)</title><rect x="101.5" y="245" width="1.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="104.49" y="255.5" ></text>
</g>
<g >
<title>engine::now_seconds (18,672,296 samples, 0.23%)</title><rect x="947.5" y="341" width="2.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="950.52" y="351.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (396,687,494 samples, 4.81%)</title><rect x="890.5" y="325" width="56.7" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="893.49" y="335.5" >[libSD..</text>
</g>
<g >
<title>pthread_mutex_lock (49,408,402 samples, 0.60%)</title><rect x="828.4" y="245" width="7.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="831.40" y="255.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (1,925,277 samples, 0.02%)</title><rect x="947.2" y="101" width="0.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="950.24" y="111.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,892,031 samples, 0.35%)</title><rect x="705.8" y="245" width="4.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="708.80" y="255.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (11,451,300 samples, 0.14%)</title><rect x="765.6" y="213" width="1.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="768.65" y="223.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (12,277,157 samples, 0.15%)</title><rect x="37.0" y="245" width="1.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="40.03" y="255.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (173,040,467 samples, 2.10%)</title><rect x="1122.8" y="229" width="24.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1125.76" y="239.5" >[..</text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (72,348,018 samples, 0.88%)</title><rect x="78.8" y="261" width="10.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="81.83" y="271.5" ></text>
</g>
<g >
<title>runtime::append_elem:proc (208,862,261 samples, 2.53%)</title><rect x="494.2" y="325" width="29.8" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="497.17" y="335.5" >ru..</text>
</g>
<g >
<title>ioctl (8,283,700 samples, 0.10%)</title><rect x="172.0" y="213" width="1.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="174.98" y="223.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (27,525,670 samples, 0.33%)</title><rect x="930.9" y="245" width="3.9" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="933.86" y="255.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,326,656 samples, 0.10%)</title><rect x="32.7" y="405" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="35.69" y="415.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (11,315,814 samples, 0.14%)</title><rect x="767.3" y="213" width="1.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="770.28" y="223.5" ></text>
</g>
<g >
<title>ioctl (22,687,816 samples, 0.27%)</title><rect x="166.0" y="197" width="3.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="168.95" y="207.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="357" width="4.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1150.90" y="367.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="277" width="4.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1150.90" y="287.5" ></text>
</g>
<g >
<title>[libxkbcommon.so.0.13.2] (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="149" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1150.51" y="159.5" ></text>
</g>
<g >
<title>_dbus_pending_call_set_timeout_error_unlocked (1,925,277 samples, 0.02%)</title><rect x="947.2" y="229" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="950.24" y="239.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (6,984,182 samples, 0.08%)</title><rect x="782.4" y="245" width="1.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="785.41" y="255.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (121,024,736 samples, 1.47%)</title><rect x="911.0" y="277" width="17.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="913.97" y="287.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (48,531,050 samples, 0.59%)</title><rect x="893.3" y="277" width="7.0" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="896.31" y="287.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (19,986,984 samples, 0.24%)</title><rect x="102.7" y="277" width="2.8" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="105.68" y="287.5" ></text>
</g>
<g >
<title>engine::sprite_feet_quad (204,592,299 samples, 2.48%)</title><rect x="375.4" y="325" width="29.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="378.42" y="335.5" >en..</text>
</g>
<g >
<title>[libGLX_nvidia.so.610.43.03] (15,373,130 samples, 0.19%)</title><rect x="38.8" y="357" width="2.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="41.79" y="367.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (28,258,779 samples, 0.34%)</title><rect x="159.0" y="149" width="4.0" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="162.00" y="159.5" ></text>
</g>
<g >
<title>SDL_UnmapGPUTransferBuffer (9,189,388 samples, 0.11%)</title><rect x="540.2" y="325" width="1.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="543.16" y="335.5" ></text>
</g>
<g >
<title>[libc.so.6] (10,521,103 samples, 0.13%)</title><rect x="900.3" y="277" width="1.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="903.25" y="287.5" ></text>
</g>
<g >
<title>[libc.so.6] (12,277,157 samples, 0.15%)</title><rect x="37.0" y="373" width="1.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="40.03" y="383.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="213" width="0.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1150.51" y="223.5" ></text>
</g>
<g >
<title>[libffi.so.8.4.1] (9,294,040 samples, 0.11%)</title><rect x="903.0" y="229" width="1.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="906.05" y="239.5" ></text>
</g>
<g >
<title>[libc.so.6] (9,379,069 samples, 0.11%)</title><rect x="42.3" y="357" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="45.34" y="367.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="389" width="0.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1150.51" y="399.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (8,038,318 samples, 0.10%)</title><rect x="930.9" y="229" width="1.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="933.86" y="239.5" ></text>
</g>
<g >
<title>engine::end_frame (515,017,885 samples, 6.24%)</title><rect x="1073.9" y="405" width="73.6" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1076.86" y="415.5" >engine::..</text>
</g>
<g >
<title>runtime::default_hasher (173,506,285 samples, 2.10%)</title><rect x="1001.1" y="277" width="24.8" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1004.07" y="287.5" >r..</text>
</g>
<g >
<title>[libc.so.6] (9,129,254 samples, 0.11%)</title><rect x="905.6" y="261" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="908.64" y="271.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (39,484,691 samples, 0.48%)</title><rect x="600.1" y="261" width="5.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="603.11" y="271.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (88,589,319 samples, 1.07%)</title><rect x="584.8" y="277" width="12.7" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="587.81" y="287.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (9,454,067 samples, 0.11%)</title><rect x="659.8" y="197" width="1.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="662.78" y="207.5" ></text>
</g>
<g >
<title>__libc_calloc (8,753,013 samples, 0.11%)</title><rect x="825.5" y="229" width="1.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="828.48" y="239.5" ></text>
</g>
<g >
<title>dbus_connection_send_with_reply_and_block (1,937,451 samples, 0.02%)</title><rect x="947.2" y="261" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="950.24" y="271.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (193,758,590 samples, 2.35%)</title><rect x="67.5" y="277" width="27.7" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="70.53" y="287.5" >[..</text>
</g>
<g >
<title>runtime::string_eq (130,463,005 samples, 1.58%)</title><rect x="341.4" y="293" width="18.7" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="344.42" y="303.5" ></text>
</g>
<g >
<title>runtime::default_hasher_string (62,419,115 samples, 0.76%)</title><rect x="325.4" y="293" width="9.0" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="328.45" y="303.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (744,155,046 samples, 9.02%)</title><rect x="554.7" y="309" width="106.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="557.71" y="319.5" >[libSDL3.so.0..</text>
</g>
<g >
<title>_dbus_type_writer_write_basic_no_typecode (1,925,277 samples, 0.02%)</title><rect x="947.2" y="165" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="950.24" y="175.5" ></text>
</g>
<g >
<title>wl_display_roundtrip_queue (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="357" width="0.4" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1150.51" y="367.5" ></text>
</g>
<g >
<title>_dbus_connection_unlock (8,900,188 samples, 0.11%)</title><rect x="944.8" y="261" width="1.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="947.78" y="271.5" ></text>
</g>
<g >
<title>runtime::map_seed_from_map_data (15,828,453 samples, 0.19%)</title><rect x="1057.5" y="309" width="2.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1060.46" y="319.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (10,506,340 samples, 0.13%)</title><rect x="164.5" y="197" width="1.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="167.45" y="207.5" ></text>
</g>
<g >
<title>drmSyncobjExportSyncFile (18,780,160 samples, 0.23%)</title><rect x="170.5" y="245" width="2.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="173.48" y="255.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (112,173,686 samples, 1.36%)</title><rect x="149.9" y="229" width="16.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="152.91" y="239.5" ></text>
</g>
<g >
<title>drmSyncobjTimelineWait (22,687,818 samples, 0.27%)</title><rect x="166.0" y="229" width="3.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="168.95" y="239.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (48,270,198 samples, 0.59%)</title><rect x="753.6" y="229" width="6.9" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="756.60" y="239.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (25,210,601 samples, 0.31%)</title><rect x="781.1" y="261" width="3.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="784.12" y="271.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (9,236,987 samples, 0.11%)</title><rect x="783.4" y="245" width="1.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="786.41" y="255.5" ></text>
</g>
<g >
<title>__$map_get$$map[string]engine::Clip_Def (220,789,565 samples, 2.68%)</title><rect x="1025.9" y="309" width="31.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="1028.88" y="319.5" >__..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="261" width="4.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1150.90" y="271.5" ></text>
</g>
<g >
<title>main (7,087,522,107 samples, 85.90%)</title><rect x="46.2" y="373" width="1013.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="49.15" y="383.5" >main</text>
</g>
<g >
<title>[unknown] (9,695,906 samples, 0.12%)</title><rect x="44.8" y="373" width="1.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="47.76" y="383.5" ></text>
</g>
<g >
<title>[libc.so.6] (7,082,577 samples, 0.09%)</title><rect x="888.4" y="309" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="891.42" y="319.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (8,302,549 samples, 0.10%)</title><rect x="88.0" y="245" width="1.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="90.99" y="255.5" ></text>
</g>
<g >
<title>wl_display_dispatch_queue_timeout (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="325" width="0.4" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1150.51" y="335.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (430,687,719 samples, 5.22%)</title><rect x="1085.9" y="277" width="61.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1088.92" y="287.5" >[libvu..</text>
</g>
<g >
<title>xkb_keymap_new_from_buffer (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="197" width="0.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1150.51" y="207.5" ></text>
</g>
<g >
<title>__$hasher$$string (72,570,577 samples, 0.88%)</title><rect x="324.0" y="309" width="10.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="326.99" y="319.5" ></text>
</g>
<g >
<title>__poll (11,672,599 samples, 0.14%)</title><rect x="912.3" y="245" width="1.7" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="915.29" y="255.5" ></text>
</g>
<g >
<title>[libc.so.6] (32,033,538 samples, 0.39%)</title><rect x="106.9" y="277" width="4.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="109.87" y="287.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (629,325,755 samples, 7.63%)</title><rect x="682.7" y="277" width="90.0" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="685.73" y="287.5" >[libvulkan..</text>
</g>
<g >
<title>pthread_rwlock_rdlock (20,318,379 samples, 0.25%)</title><rect x="742.3" y="229" width="2.9" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="745.34" y="239.5" ></text>
</g>
<g >
<title>[libc.so.6] (19,294,366 samples, 0.23%)</title><rect x="721.7" y="197" width="2.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="724.66" y="207.5" ></text>
</g>
<g >
<title>clock_gettime (35,960,720 samples, 0.44%)</title><rect x="760.5" y="229" width="5.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="763.50" y="239.5" ></text>
</g>
<g >
<title>[libc.so.6] (7,451,639 samples, 0.09%)</title><rect x="824.4" y="229" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="827.42" y="239.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (515,017,885 samples, 6.24%)</title><rect x="1073.9" y="389" width="73.6" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1076.86" y="399.5" >[libSDL3..</text>
</g>
<g >
<title>wl_list_empty (8,206,240 samples, 0.10%)</title><rect x="784.7" y="261" width="1.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="787.73" y="271.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (57,045,935 samples, 0.69%)</title><rect x="937.9" y="277" width="8.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="940.90" y="287.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (9,582,778 samples, 0.12%)</title><rect x="770.1" y="213" width="1.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="773.11" y="223.5" ></text>
</g>
<g >
<title>[libc.so.6] (10,002,720 samples, 0.12%)</title><rect x="805.7" y="229" width="1.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="808.73" y="239.5" ></text>
</g>
<g >
<title>[libc.so.6] (11,672,599 samples, 0.14%)</title><rect x="912.3" y="229" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="915.29" y="239.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (51,985,573 samples, 0.63%)</title><rect x="95.2" y="277" width="7.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="98.24" y="287.5" ></text>
</g>
<g >
<title>[libffi.so.8.4.1] (8,815,693 samples, 0.11%)</title><rect x="904.4" y="213" width="1.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="907.38" y="223.5" ></text>
</g>
<g >
<title>memmove (1,925,277 samples, 0.02%)</title><rect x="947.2" y="53" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="950.24" y="63.5" ></text>
</g>
<g >
<title>[libc.so.6] (9,695,906 samples, 0.12%)</title><rect x="44.8" y="389" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="47.76" y="399.5" ></text>
</g>
<g >
<title>[libc.so.6] (11,672,599 samples, 0.14%)</title><rect x="912.3" y="197" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="915.29" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (26,416,809 samples, 0.32%)</title><rect x="41.0" y="405" width="3.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="43.99" y="415.5" ></text>
</g>
<g >
<title>_dbus_connection_ref_unlocked (9,981,057 samples, 0.12%)</title><rect x="943.4" y="261" width="1.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="946.36" y="271.5" ></text>
</g>
<g >
<title>[libc.so.6] (9,265,716 samples, 0.11%)</title><rect x="908.3" y="293" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="911.32" y="303.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (7,689,418 samples, 0.09%)</title><rect x="933.7" y="229" width="1.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="936.69" y="239.5" ></text>
</g>
<g >
<title>__libc_start_main (7,087,522,107 samples, 85.90%)</title><rect x="46.2" y="405" width="1013.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="49.15" y="415.5" >__libc_start_main</text>
</g>
<g >
<title>engine::begin_frame (818,353,957 samples, 9.92%)</title><rect x="57.3" y="341" width="117.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="60.35" y="351.5" >engine::begin_..</text>
</g>
<g >
<title>wl_display_dispatch_queue_pending (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="309" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1150.51" y="319.5" ></text>
</g>
<g >
<title>[unknown] (11,282,931 samples, 0.14%)</title><rect x="736.4" y="149" width="1.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="739.40" y="159.5" ></text>
</g>
<g >
<title>dlopen (12,277,157 samples, 0.15%)</title><rect x="37.0" y="389" width="1.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="40.03" y="399.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="245" width="4.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1150.90" y="255.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (1,486,441 samples, 0.02%)</title><rect x="37.0" y="197" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="40.03" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (1,209,761,360 samples, 14.66%)</title><rect x="662.5" y="309" width="173.0" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="665.46" y="319.5" >[libvulkan_radeon.so]</text>
</g>
<g >
<title>ioctl (8,715,655 samples, 0.11%)</title><rect x="771.5" y="229" width="1.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="774.48" y="239.5" ></text>
</g>
<g >
<title>[unknown] (14,354,448 samples, 0.17%)</title><rect x="167.1" y="149" width="2.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="170.15" y="159.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (387,170,535 samples, 4.69%)</title><rect x="605.8" y="293" width="55.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="608.76" y="303.5" >[libv..</text>
</g>
<g >
<title>main (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="421" width="4.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="1150.90" y="431.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,177,788 samples, 0.10%)</title><rect x="1083.4" y="309" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1086.40" y="319.5" ></text>
</g>
<g >
<title>[libc.so.6] (59,809,603 samples, 0.72%)</title><rect x="725.8" y="213" width="8.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="728.84" y="223.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (29,638,920 samples, 0.36%)</title><rect x="601.5" y="245" width="4.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="604.52" y="255.5" ></text>
</g>
<g >
<title>[libc.so.6] (37,961,561 samples, 0.46%)</title><rect x="719.0" y="229" width="5.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="721.99" y="239.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (487,178,697 samples, 5.90%)</title><rect x="1077.8" y="357" width="69.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1080.84" y="367.5" >[libvul..</text>
</g>
<g >
<title>engine::draw_sprite (2,445,067,696 samples, 29.63%)</title><rect x="174.4" y="341" width="349.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="177.38" y="351.5" >engine::draw_sprite</text>
</g>
<g >
<title>engine::update_sprite (765,901,160 samples, 9.28%)</title><rect x="950.2" y="341" width="109.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="953.19" y="351.5" >engine::updat..</text>
</g>
<g >
<title>runtime::string_eq (97,519,869 samples, 1.18%)</title><rect x="1043.5" y="293" width="14.0" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1046.51" y="303.5" ></text>
</g>
<g >
<title>_dl_catch_exception (12,277,157 samples, 0.15%)</title><rect x="37.0" y="293" width="1.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="40.03" y="303.5" ></text>
</g>
<g >
<title>[libxkbcommon.so.0.13.2] (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="181" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1150.51" y="191.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (8,779,829 samples, 0.11%)</title><rect x="948.9" y="309" width="1.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="951.93" y="319.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (146,478,317 samples, 1.78%)</title><rect x="584.8" y="293" width="21.0" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="587.81" y="303.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="325" width="4.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1150.90" y="335.5" ></text>
</g>
<g >
<title>[libGLX_nvidia.so.610.43.03] (10,720,180 samples, 0.13%)</title><rect x="37.2" y="229" width="1.6" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="40.25" y="239.5" ></text>
</g>
<g >
<title>main::main (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="405" width="4.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1150.90" y="415.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,164,118 samples, 0.24%)</title><rect x="1149.3" y="197" width="2.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1152.34" y="207.5" ></text>
</g>
<g >
<title>_dbus_connection_unlock (9,911,671 samples, 0.12%)</title><rect x="928.3" y="277" width="1.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="931.28" y="287.5" ></text>
</g>
<g >
<title>vsnprintf (16,942,737 samples, 0.21%)</title><rect x="42.3" y="389" width="2.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="45.34" y="399.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (440,137,634 samples, 5.33%)</title><rect x="1084.6" y="309" width="62.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1087.57" y="319.5" >[libvu..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="309" width="4.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1150.90" y="319.5" ></text>
</g>
<g >
<title>[unknown] (17,812,354 samples, 0.22%)</title><rect x="1071.3" y="373" width="2.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1074.31" y="383.5" ></text>
</g>
<g >
<title>dbus_connection_ref (21,712,173 samples, 0.26%)</title><rect x="934.8" y="277" width="3.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="937.79" y="287.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (17,488,067 samples, 0.21%)</title><rect x="835.5" y="309" width="2.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="838.47" y="319.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,900,188 samples, 0.11%)</title><rect x="944.8" y="245" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="947.78" y="255.5" ></text>
</g>
<g >
<title>[libc.so.6] (12,277,157 samples, 0.15%)</title><rect x="37.0" y="325" width="1.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="40.03" y="335.5" ></text>
</g>
<g >
<title>ffi_call (8,815,693 samples, 0.11%)</title><rect x="904.4" y="229" width="1.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="907.38" y="239.5" ></text>
</g>
<g >
<title>[libc.so.6] (132,367,331 samples, 1.60%)</title><rect x="295.2" y="325" width="18.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="298.16" y="335.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (17,364,917 samples, 0.21%)</title><rect x="763.2" y="213" width="2.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="766.16" y="223.5" ></text>
</g>
<g >
<title>[libc.so.6] (22,031,260 samples, 0.27%)</title><rect x="33.9" y="421" width="3.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="36.88" y="431.5" ></text>
</g>
<g >
<title>__$hasher$$string (204,555,362 samples, 2.48%)</title><rect x="996.6" y="309" width="29.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="999.63" y="319.5" >__..</text>
</g>
<g >
<title>main::main (7,087,522,107 samples, 85.90%)</title><rect x="46.2" y="357" width="1013.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="49.15" y="367.5" >main::main</text>
</g>
<g >
<title>[libvulkan_radeon.so] (26,416,809 samples, 0.32%)</title><rect x="41.0" y="421" width="3.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="43.99" y="431.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (310,039,291 samples, 3.76%)</title><rect x="124.9" y="245" width="44.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="127.86" y="255.5" >[lib..</text>
</g>
<g >
<title>_dbus_atomic_dec (8,109,134 samples, 0.10%)</title><rect x="946.1" y="261" width="1.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="949.06" y="271.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (27,525,670 samples, 0.33%)</title><rect x="930.9" y="261" width="3.9" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="933.86" y="271.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (13,679,339 samples, 0.17%)</title><rect x="751.6" y="245" width="2.0" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="754.64" y="255.5" ></text>
</g>
<g >
<title>drmSyncobjReset (8,715,655 samples, 0.11%)</title><rect x="771.5" y="261" width="1.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="774.48" y="271.5" ></text>
</g>
<g >
<title>drmIoctl (18,780,160 samples, 0.23%)</title><rect x="170.5" y="229" width="2.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="173.48" y="239.5" ></text>
</g>
<g >
<title>[libvulkan.so.1.4.350] (27,650,287 samples, 0.34%)</title><rect x="37.0" y="405" width="4.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="40.03" y="415.5" ></text>
</g>
<g >
<title>wl_proxy_marshal_flags (346,604,260 samples, 4.20%)</title><rect x="785.9" y="277" width="49.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="788.90" y="287.5" >wl_pr..</text>
</g>
<g >
<title>wl_display_prepare_read_queue (18,028,535 samples, 0.22%)</title><rect x="768.9" y="229" width="2.6" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="771.90" y="239.5" ></text>
</g>
<g >
<title>dbus_connection_get_dispatch_status (35,627,104 samples, 0.43%)</title><rect x="929.7" y="277" width="5.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="932.70" y="287.5" ></text>
</g>
<g >
<title>marshal_string (1,925,277 samples, 0.02%)</title><rect x="947.2" y="117" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="950.24" y="127.5" ></text>
</g>
<g >
<title>[libc.so.6] (11,259,375 samples, 0.14%)</title><rect x="33.9" y="405" width="1.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="36.88" y="415.5" ></text>
</g>
<g >
<title>engine::end_frame (2,562,419,309 samples, 31.05%)</title><rect x="524.0" y="341" width="366.5" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="527.04" y="351.5" >engine::end_frame</text>
</g>
<g >
<title>engine::frame_uvs (56,946,428 samples, 0.69%)</title><rect x="367.3" y="325" width="8.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="370.27" y="335.5" ></text>
</g>
<g >
<title>_dbus_type_writer_write_basic_no_typecode (1,925,277 samples, 0.02%)</title><rect x="947.2" y="149" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="950.24" y="159.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="341" width="4.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1150.90" y="351.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (1,145,415,537 samples, 13.88%)</title><rect x="671.7" y="293" width="163.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="674.66" y="303.5" >[libvulkan_radeon.so]</text>
</g>
<g >
<title>[libvulkan_radeon.so] (562,291,357 samples, 6.81%)</title><rect x="691.1" y="261" width="80.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="694.07" y="271.5" >[libvulka..</text>
</g>
<g >
<title>engine::character_frame (371,880,235 samples, 4.51%)</title><rect x="314.1" y="325" width="53.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="317.09" y="335.5" >engin..</text>
</g>
<g >
<title>dbus_message_iter_append_basic (1,925,277 samples, 0.02%)</title><rect x="947.2" y="197" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="950.24" y="207.5" ></text>
</g>
<g >
<title>engine::end_frame (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="389" width="4.3" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1150.90" y="399.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (68,749,343 samples, 0.83%)</title><rect x="874.6" y="277" width="9.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="877.64" y="287.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (31,082,886 samples, 0.38%)</title><rect x="98.2" y="261" width="4.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="101.23" y="271.5" ></text>
</g>
<g >
<title>[libc.so.6] (15,373,130 samples, 0.19%)</title><rect x="38.8" y="309" width="2.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="41.79" y="319.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (315,816,069 samples, 3.83%)</title><rect x="839.3" y="325" width="45.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="842.30" y="335.5" >[lib..</text>
</g>
<g >
<title>__$map_get$$map[string]engine::Clip_Def (179,750,318 samples, 2.18%)</title><rect x="334.4" y="309" width="25.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="337.37" y="319.5" >_..</text>
</g>
<g >
<title>pthread_getspecific (9,045,261 samples, 0.11%)</title><rect x="901.8" y="277" width="1.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="904.76" y="287.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (85,761,234 samples, 1.04%)</title><rect x="648.9" y="229" width="12.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="651.86" y="239.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (197,592,926 samples, 2.39%)</title><rect x="909.6" y="293" width="28.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="912.64" y="303.5" >[..</text>
</g>
<g >
<title>[libc.so.6] (20,000,764 samples, 0.24%)</title><rect x="668.8" y="293" width="2.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="671.80" y="303.5" ></text>
</g>
<g >
<title>_dbus_connection_lock (21,647,186 samples, 0.26%)</title><rect x="914.0" y="245" width="3.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="916.96" y="255.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,777,872 samples, 0.35%)</title><rect x="720.3" y="213" width="4.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="723.31" y="223.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (57,888,998 samples, 0.70%)</title><rect x="597.5" y="277" width="8.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="600.48" y="287.5" ></text>
</g>
<g >
<title>[unknown] (8,715,655 samples, 0.11%)</title><rect x="771.5" y="197" width="1.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="774.48" y="207.5" ></text>
</g>
<g >
<title>[unknown] (22,687,815 samples, 0.27%)</title><rect x="166.0" y="181" width="3.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="168.95" y="191.5" ></text>
</g>
<g >
<title>crowd_perf (7,987,120,717 samples, 96.80%)</title><rect x="10.0" y="437" width="1142.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="13.01" y="447.5" >crowd_perf</text>
</g>
<g >
<title>main (10,771,885 samples, 0.13%)</title><rect x="35.5" y="405" width="1.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="38.49" y="415.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (136,895,838 samples, 1.66%)</title><rect x="807.2" y="245" width="19.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="810.16" y="255.5" ></text>
</g>
<g >
<title>_dbus_type_writer_write_basic (1,925,277 samples, 0.02%)</title><rect x="947.2" y="181" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="950.24" y="191.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="373" width="4.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1150.90" y="383.5" ></text>
</g>
<g >
<title>[unknown] (11,282,931 samples, 0.14%)</title><rect x="736.4" y="181" width="1.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="739.40" y="191.5" ></text>
</g>
<g >
<title>engine::init (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="405" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1150.51" y="415.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (8,779,829 samples, 0.11%)</title><rect x="948.9" y="325" width="1.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="951.93" y="335.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (283,705,844 samples, 3.44%)</title><rect x="65.0" y="293" width="40.5" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="67.96" y="303.5" >[li..</text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (90,761,590 samples, 1.10%)</title><rect x="19.7" y="405" width="13.0" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="22.71" y="415.5" ></text>
</g>
<g >
<title>clock_gettime (20,384,935 samples, 0.25%)</title><rect x="163.0" y="213" width="3.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="166.04" y="223.5" ></text>
</g>
<g >
<title>[libc.so.6] (47,671,003 samples, 0.58%)</title><rect x="774.3" y="261" width="6.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="777.30" y="271.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (515,017,885 samples, 6.24%)</title><rect x="1073.9" y="373" width="73.6" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1076.86" y="383.5" >[libSDL3..</text>
</g>
<g >
<title>[libxkbcommon.so.0.13.2] (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="165" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1150.51" y="175.5" ></text>
</g>
<g >
<title>[unknown] (9,696,030 samples, 0.12%)</title><rect x="44.8" y="421" width="1.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="47.76" y="431.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (800,149,841 samples, 9.70%)</title><rect x="60.0" y="325" width="114.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="62.95" y="335.5" >[libSDL3.so.0...</text>
</g>
<g >
<title>[libvulkan_radeon.so] (54,305,938 samples, 0.66%)</title><rect x="589.7" y="261" width="7.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="592.71" y="271.5" ></text>
</g>
<g >
<title>engine::now_seconds (10,771,885 samples, 0.13%)</title><rect x="35.5" y="373" width="1.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="38.49" y="383.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,233,626 samples, 0.37%)</title><rect x="1147.9" y="293" width="4.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1150.90" y="303.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (121,024,736 samples, 1.47%)</title><rect x="911.0" y="261" width="17.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="913.97" y="271.5" ></text>
</g>
<g >
<title>[unknown] (8,715,655 samples, 0.11%)</title><rect x="771.5" y="213" width="1.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="774.48" y="223.5" ></text>
</g>
<g >
<title>clock_gettime (15,905,792 samples, 0.19%)</title><rect x="898.0" y="261" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="900.98" y="271.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (115,386,614 samples, 1.40%)</title><rect x="891.8" y="293" width="16.5" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="894.82" y="303.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,925,277 samples, 0.02%)</title><rect x="947.2" y="37" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="950.24" y="47.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (207,416,478 samples, 2.51%)</title><rect x="854.8" y="293" width="29.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="857.80" y="303.5" >[l..</text>
</g>
<g >
<title>all (8,251,313,686 samples, 100%)</title><rect x="10.0" y="453" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="463.5" ></text>
</g>
<g >
<title>wl_display_dispatch_queue_pending (81,087,844 samples, 0.98%)</title><rect x="774.3" y="277" width="11.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="777.30" y="287.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (1,509,734 samples, 0.02%)</title><rect x="37.0" y="229" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="40.03" y="239.5" ></text>
</g>
<g >
<title>runtime::memory_equal (48,120,823 samples, 0.58%)</title><rect x="1050.6" y="277" width="6.9" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1053.57" y="287.5" ></text>
</g>
<g >
<title>engine::to_clip (472,973,546 samples, 5.73%)</title><rect x="404.7" y="325" width="67.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="407.68" y="335.5" >engine:..</text>
</g>
<g >
<title>engine::init (2,116,586 samples, 0.03%)</title><rect x="947.2" y="341" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="950.22" y="351.5" ></text>
</g>
<g >
<title>[libc.so.6] (32,687,989 samples, 0.40%)</title><rect x="870.0" y="277" width="4.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="872.96" y="287.5" ></text>
</g>
<g >
<title>clock_gettime (31,527,530 samples, 0.38%)</title><rect x="745.2" y="245" width="4.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="748.25" y="255.5" ></text>
</g>
<g >
<title>pthread_rwlock_rdlock (15,689,220 samples, 0.19%)</title><rect x="90.3" y="261" width="2.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="93.34" y="271.5" ></text>
</g>
<g >
<title>_start (7,087,522,107 samples, 85.90%)</title><rect x="46.2" y="421" width="1013.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="49.15" y="431.5" >_start</text>
</g>
<g >
<title>wl_display_dispatch_queue_pending (18,109,733 samples, 0.22%)</title><rect x="903.0" y="277" width="2.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="906.05" y="287.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (8,160,173 samples, 0.10%)</title><rect x="89.2" y="261" width="1.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="92.18" y="271.5" ></text>
</g>
<g >
<title>[unknown] (11,282,931 samples, 0.14%)</title><rect x="736.4" y="165" width="1.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="739.40" y="175.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="277" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1150.51" y="287.5" ></text>
</g>
<g >
<title>[unknown] (14,354,448 samples, 0.17%)</title><rect x="167.1" y="165" width="2.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="170.15" y="175.5" ></text>
</g>
<g >
<title>[unknown] (11,282,931 samples, 0.14%)</title><rect x="736.4" y="197" width="1.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="739.40" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (14,069,818 samples, 0.17%)</title><rect x="734.4" y="213" width="2.0" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="737.39" y="223.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,982,260 samples, 0.11%)</title><rect x="169.2" y="197" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="172.20" y="207.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (800,149,841 samples, 9.70%)</title><rect x="60.0" y="309" width="114.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="62.95" y="319.5" >[libSDL3.so.0...</text>
</g>
<g >
<title>main::main (10,771,885 samples, 0.13%)</title><rect x="35.5" y="389" width="1.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="38.49" y="399.5" ></text>
</g>
<g >
<title>engine::character_clip (597,585,044 samples, 7.24%)</title><rect x="974.3" y="325" width="85.4" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="977.26" y="335.5" >engine::ch..</text>
</g>
<g >
<title>[unknown] (8,715,655 samples, 0.11%)</title><rect x="771.5" y="181" width="1.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="774.48" y="191.5" ></text>
</g>
<g >
<title>[libc.so.6] (31,944,858 samples, 0.39%)</title><rect x="776.6" y="229" width="4.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="779.55" y="239.5" ></text>
</g>
<g >
<title>_dbus_connection_unref_unlocked (78,492,210 samples, 0.95%)</title><rect x="917.1" y="245" width="11.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="920.06" y="255.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (430,687,719 samples, 5.22%)</title><rect x="1085.9" y="261" width="61.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1088.92" y="271.5" >[libvu..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (305,757,519 samples, 3.71%)</title><rect x="840.7" y="309" width="43.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="843.74" y="319.5" >[lib..</text>
</g>
<g >
<title>__vdso_clock_gettime (19,003,726 samples, 0.23%)</title><rect x="757.8" y="197" width="2.7" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="760.78" y="207.5" ></text>
</g>
<g >
<title>pthread_rwlock_unlock (18,563,124 samples, 0.22%)</title><rect x="92.6" y="261" width="2.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="95.59" y="271.5" ></text>
</g>
<g >
<title>[libc.so.6] (11,672,599 samples, 0.14%)</title><rect x="912.3" y="213" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="915.29" y="223.5" ></text>
</g>
<g >
<title>cfree (20,734,088 samples, 0.25%)</title><rect x="738.0" y="229" width="3.0" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="741.02" y="239.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,982,260 samples, 0.11%)</title><rect x="169.2" y="229" width="1.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="172.20" y="239.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (11,173,424 samples, 0.14%)</title><rect x="941.8" y="229" width="1.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="944.76" y="239.5" ></text>
</g>
<g >
<title>[libffi.so.8.4.1] (2,729,698 samples, 0.03%)</title><rect x="1147.5" y="245" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1150.51" y="255.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (10,771,885 samples, 0.13%)</title><rect x="35.5" y="357" width="1.5" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="38.49" y="367.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (246,988,225 samples, 2.99%)</title><rect x="709.9" y="245" width="35.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="712.93" y="255.5" >[l..</text>
</g>
<g >
<title>[libGLX_nvidia.so.610.43.03] (15,373,130 samples, 0.19%)</title><rect x="38.8" y="325" width="2.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="41.79" y="335.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (8,815,693 samples, 0.11%)</title><rect x="904.4" y="165" width="1.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="907.38" y="175.5" ></text>
</g>
<g >
<title>[libc.so.6] (27,404,266 samples, 0.33%)</title><rect x="618.5" y="277" width="3.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="621.45" y="287.5" ></text>
</g>
<g >
<title>_dbus_message_loader_queue_messages (11,797,934 samples, 0.14%)</title><rect x="932.0" y="229" width="1.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="935.01" y="239.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (1,937,451 samples, 0.02%)</title><rect x="947.2" y="293" width="0.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="950.24" y="303.5" ></text>
</g>
<g >
<title>runtime::_append_elem (133,732,614 samples, 1.62%)</title><rect x="504.9" y="293" width="19.1" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="507.92" y="303.5" ></text>
</g>
<g >
<title>[libc.so.6] (17,529,044 samples, 0.21%)</title><rect x="521.5" y="277" width="2.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="524.54" y="287.5" ></text>
</g>
<g >
<title>[libc.so.6] (9,336,930 samples, 0.11%)</title><rect x="661.1" y="309" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="664.13" y="319.5" ></text>
</g>
<g >
<title>_dl_catch_exception (12,277,157 samples, 0.15%)</title><rect x="37.0" y="261" width="1.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="40.03" y="271.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (85,761,234 samples, 1.04%)</title><rect x="648.9" y="245" width="12.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="651.86" y="255.5" ></text>
</g>
<g >
<title>wl_cursor_surfa (264,152,417 samples, 3.20%)</title><rect x="1152.2" y="437" width="37.8" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="1155.22" y="447.5" >wl_..</text>
</g>
<g >
<title>[libnvidia-glcore.so.610.43.03] (10,720,180 samples, 0.13%)</title><rect x="37.2" y="165" width="1.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="40.25" y="175.5" ></text>
</g>
<g >
<title>[libGLX_nvidia.so.610.43.03] (10,720,180 samples, 0.13%)</title><rect x="37.2" y="197" width="1.6" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="40.25" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (417,065,155 samples, 5.05%)</title><rect x="113.5" y="261" width="59.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="116.52" y="271.5" >[libvu..</text>
</g>
</g>
</svg>