Files
codegirl-games/flame/crowd-20260803-003404.svg
2026-08-03 13:45:59 -07:00

1443 lines
62 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="486" onload="init(evt)" viewBox="0 0 1200 486" 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="486.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="469" > </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="469" > </text>
<g id="frames">
<g >
<title>wl_display_dispatch_queue_timeout (4,867,811 samples, 0.18%)</title><rect x="996.9" y="245" width="2.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="999.93" y="255.5" ></text>
</g>
<g >
<title>[unknown] (15,765,125 samples, 0.59%)</title><rect x="209.3" y="181" width="6.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="212.26" y="191.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="181" width="8.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1148.05" y="191.5" ></text>
</g>
<g >
<title>__libc_start_main (2,325,873,566 samples, 86.63%)</title><rect x="77.8" y="389" width="1022.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="80.83" y="399.5" >__libc_start_main</text>
</g>
<g >
<title>[libxkbcommon.so.0.13.2] (4,867,811 samples, 0.18%)</title><rect x="996.9" y="101" width="2.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="999.93" y="111.5" ></text>
</g>
<g >
<title>drmSyncobjTimelineWait (9,689,753 samples, 0.36%)</title><rect x="804.2" y="213" width="4.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="807.19" y="223.5" ></text>
</g>
<g >
<title>[unknown] (7,894,438 samples, 0.29%)</title><rect x="118.5" y="149" width="3.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="121.49" y="159.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (24,046,693 samples, 0.90%)</title><rect x="67.2" y="197" width="10.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="70.18" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (27,602,917 samples, 1.03%)</title><rect x="181.3" y="181" width="12.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="184.25" y="191.5" ></text>
</g>
<g >
<title>wl_display_dispatch_queue (4,867,811 samples, 0.18%)</title><rect x="996.9" y="261" width="2.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="999.93" y="271.5" ></text>
</g>
<g >
<title>_dl_catch_exception (24,166,241 samples, 0.90%)</title><rect x="67.2" y="277" width="10.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="70.18" y="287.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,329,704 samples, 0.31%)</title><rect x="878.6" y="229" width="3.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="881.64" y="239.5" ></text>
</g>
<g >
<title>runtime::default_hasher_string (45,610,072 samples, 1.70%)</title><rect x="399.5" y="277" width="20.0" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="402.45" y="287.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="325" width="8.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1148.05" y="335.5" ></text>
</g>
<g >
<title>__errno_location (8,333,117 samples, 0.31%)</title><rect x="201.1" y="181" width="3.7" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="204.10" y="191.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="309" width="8.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1148.05" y="319.5" ></text>
</g>
<g >
<title>engine::now_seconds (8,937,033 samples, 0.33%)</title><rect x="63.3" y="357" width="3.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="66.26" y="367.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,609,523 samples, 0.32%)</title><rect x="726.2" y="197" width="3.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="729.23" y="207.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (24,166,241 samples, 0.90%)</title><rect x="67.2" y="341" width="10.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="70.18" y="351.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,325,873,566 samples, 86.63%)</title><rect x="77.8" y="373" width="1022.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="80.83" y="383.5" >[libc.so.6]</text>
</g>
<g >
<title>drmIoctl (8,333,117 samples, 0.31%)</title><rect x="201.1" y="197" width="3.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="204.10" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (46,365,605 samples, 1.73%)</title><rect x="712.9" y="229" width="20.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="715.89" y="239.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (24,166,241 samples, 0.90%)</title><rect x="67.2" y="293" width="10.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="70.18" y="303.5" ></text>
</g>
<g >
<title>__$map_get$$map[string]engine::Clip_Def (51,413,351 samples, 1.91%)</title><rect x="419.5" y="293" width="22.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="422.50" y="303.5" >_..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (17,893,270 samples, 0.67%)</title><rect x="55.4" y="229" width="7.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="58.39" y="239.5" ></text>
</g>
<g >
<title>main::main (102,375,730 samples, 3.81%)</title><rect x="1100.1" y="405" width="44.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1103.05" y="415.5" >main..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (27,602,917 samples, 1.03%)</title><rect x="181.3" y="197" width="12.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="184.25" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="245" width="8.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1148.05" y="255.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (8,176,325 samples, 0.30%)</title><rect x="821.3" y="213" width="3.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="824.35" y="223.5" ></text>
</g>
<g >
<title>clock_gettime (9,457,305 samples, 0.35%)</title><rect x="800.0" y="181" width="4.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="803.04" y="191.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="341" width="8.9" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1148.05" y="351.5" ></text>
</g>
<g >
<title>ffi_call (4,867,811 samples, 0.18%)</title><rect x="996.9" y="181" width="2.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="999.93" y="191.5" ></text>
</g>
<g >
<title>engine::draw_sprite (896,023,829 samples, 33.37%)</title><rect x="228.2" y="325" width="393.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="231.20" y="335.5" >engine::draw_sprite</text>
</g>
<g >
<title>__$map_get$$map[string]engine::Clip_Def (60,083,267 samples, 2.24%)</title><rect x="1069.3" y="293" width="26.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="1072.33" y="303.5" >_..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (22,785,634 samples, 0.85%)</title><rect x="947.5" y="261" width="10.0" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="950.53" y="271.5" ></text>
</g>
<g >
<title>mem::copy (8,099,944 samples, 0.30%)</title><rect x="964.8" y="309" width="3.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="967.77" y="319.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (18,934,680 samples, 0.71%)</title><rect x="666.3" y="229" width="8.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="669.32" y="239.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="293" width="8.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1148.05" y="303.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (102,350,476 samples, 3.81%)</title><rect x="1100.1" y="373" width="44.9" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1103.05" y="383.5" >[lib..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,821,044 samples, 1.15%)</title><rect x="108.4" y="245" width="13.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="111.41" y="255.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (4,867,811 samples, 0.18%)</title><rect x="996.9" y="133" width="2.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="999.93" y="143.5" ></text>
</g>
<g >
<title>[unknown] (8,073,129 samples, 0.30%)</title><rect x="817.8" y="181" width="3.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="820.80" y="191.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="357" width="8.9" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1148.05" y="367.5" ></text>
</g>
<g >
<title>engine::to_clip (143,123,872 samples, 5.33%)</title><rect x="512.3" y="309" width="62.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="515.26" y="319.5" >engine..</text>
</g>
<g >
<title>engine::load_character_data (19,760,380 samples, 0.74%)</title><rect x="999.1" y="325" width="8.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1002.07" y="335.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (39,867,365 samples, 1.48%)</title><rect x="1127.5" y="197" width="17.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1130.51" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (17,893,270 samples, 0.67%)</title><rect x="55.4" y="277" width="7.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="58.39" y="287.5" ></text>
</g>
<g >
<title>wl_proxy_marshal_flags (128,335,224 samples, 4.78%)</title><rect x="850.2" y="261" width="56.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="853.22" y="271.5" >wl_pr..</text>
</g>
<g >
<title>engine::world_to_screen (40,376,572 samples, 1.50%)</title><rect x="575.2" y="309" width="17.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="578.16" y="319.5" ></text>
</g>
<g >
<title>main::main (2,325,873,566 samples, 86.63%)</title><rect x="77.8" y="341" width="1022.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="80.83" y="351.5" >main::main</text>
</g>
<g >
<title>ioctl (8,073,129 samples, 0.30%)</title><rect x="817.8" y="197" width="3.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="820.80" y="207.5" ></text>
</g>
<g >
<title>clock_gettime (11,761,000 samples, 0.44%)</title><rect x="812.6" y="229" width="5.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="815.63" y="239.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (373,391,122 samples, 13.91%)</title><rect x="742.5" y="277" width="164.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="745.52" y="287.5" >[libvulkan_radeon.so]</text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (31,439,487 samples, 1.17%)</title><rect x="660.8" y="261" width="13.8" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="663.83" y="271.5" ></text>
</g>
<g >
<title>engine::end_frame (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="373" width="8.9" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1148.05" y="383.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (8,937,033 samples, 0.33%)</title><rect x="63.3" y="341" width="3.9" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="66.26" y="351.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (9,529,738 samples, 0.35%)</title><rect x="988.4" y="213" width="4.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="991.41" y="223.5" ></text>
</g>
<g >
<title>xkb_keymap_new_from_buffer (4,867,811 samples, 0.18%)</title><rect x="996.9" y="117" width="2.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="999.93" y="127.5" ></text>
</g>
<g >
<title>[libc.so.6] (24,166,241 samples, 0.90%)</title><rect x="67.2" y="357" width="10.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="70.18" y="367.5" ></text>
</g>
<g >
<title>pthread_rwlock_wrlock (9,476,480 samples, 0.35%)</title><rect x="224.0" y="229" width="4.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="227.04" y="239.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,284,715 samples, 0.31%)</title><rect x="984.8" y="213" width="3.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="987.77" y="223.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (95,460,934 samples, 3.56%)</title><rect x="1103.1" y="341" width="41.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1106.08" y="351.5" >[li..</text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (103,230,201 samples, 3.84%)</title><rect x="10.0" y="389" width="45.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="13.02" y="399.5" >[lib..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (21,953,219 samples, 0.82%)</title><rect x="674.6" y="229" width="9.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="677.64" y="239.5" ></text>
</g>
<g >
<title>engine::events (64,906,447 samples, 2.42%)</title><rect x="968.3" y="325" width="28.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="971.33" y="335.5" >en..</text>
</g>
<g >
<title>[libc.so.6] (97,843,162 samples, 3.64%)</title><rect x="341.0" y="309" width="43.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="344.04" y="319.5" >[lib..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (83,782,807 samples, 3.12%)</title><rect x="172.4" y="229" width="36.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="175.44" y="239.5" >[li..</text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (17,893,270 samples, 0.67%)</title><rect x="55.4" y="341" width="7.9" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="58.39" y="351.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (65,642,792 samples, 2.44%)</title><rect x="1116.2" y="229" width="28.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1119.19" y="239.5" >[l..</text>
</g>
<g >
<title>mem::copy (19,760,380 samples, 0.74%)</title><rect x="999.1" y="309" width="8.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1002.07" y="319.5" ></text>
</g>
<g >
<title>drmIoctl (24,410,411 samples, 0.91%)</title><rect x="111.2" y="197" width="10.8" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="114.23" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (137,053,667 samples, 5.10%)</title><rect x="764.7" y="245" width="60.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="767.71" y="255.5" >[libvu..</text>
</g>
<g >
<title>engine::character_frame (184,996,998 samples, 6.89%)</title><rect x="384.0" y="309" width="81.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="387.05" y="319.5" >engine::c..</text>
</g>
<g >
<title>__$hasher$$string (50,181,034 samples, 1.87%)</title><rect x="1047.3" y="293" width="22.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1050.27" y="303.5" >_..</text>
</g>
<g >
<title>[libc.so.6] (26,830,369 samples, 1.00%)</title><rect x="55.4" y="405" width="11.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="58.39" y="415.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (5,046,260 samples, 0.19%)</title><rect x="996.9" y="293" width="2.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="999.86" y="303.5" ></text>
</g>
<g >
<title>clock_gettime (8,682,395 samples, 0.32%)</title><rect x="193.4" y="197" width="3.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="196.39" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (17,893,270 samples, 0.67%)</title><rect x="55.4" y="261" width="7.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="58.39" y="271.5" ></text>
</g>
<g >
<title>drmSyncobjTimelineWait (8,073,129 samples, 0.30%)</title><rect x="817.8" y="229" width="3.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="820.80" y="239.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (24,046,693 samples, 0.90%)</title><rect x="67.2" y="181" width="10.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="70.18" y="191.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (98,492,942 samples, 3.67%)</title><rect x="690.0" y="261" width="43.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="692.98" y="271.5" >[lib..</text>
</g>
<g >
<title>pthread_mutex_lock (15,989,088 samples, 0.60%)</title><rect x="122.0" y="261" width="7.0" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="124.96" y="271.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (9,529,738 samples, 0.35%)</title><rect x="988.4" y="245" width="4.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="991.41" y="255.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="229" width="8.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1148.05" y="239.5" ></text>
</g>
<g >
<title>[libc.so.6] (18,190,983 samples, 0.68%)</title><rect x="150.2" y="245" width="8.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="153.16" y="255.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (9,457,305 samples, 0.35%)</title><rect x="800.0" y="197" width="4.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="803.04" y="207.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (305,619,941 samples, 11.38%)</title><rect x="93.9" y="309" width="134.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="96.88" y="319.5" >[libSDL3.so.0.4...</text>
</g>
<g >
<title>engine::character_clip (129,128,695 samples, 4.81%)</title><rect x="1043.3" y="309" width="56.7" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="1046.29" y="319.5" >engine..</text>
</g>
<g >
<title>[unknown] (8,713,200 samples, 0.32%)</title><rect x="1186.2" y="405" width="3.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1189.17" y="415.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (64,906,447 samples, 2.42%)</title><rect x="968.3" y="309" width="28.6" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="971.33" y="319.5" >[l..</text>
</g>
<g >
<title>engine::sprite_feet_quad (106,738,476 samples, 3.98%)</title><rect x="465.4" y="309" width="46.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="468.35" y="319.5" >engi..</text>
</g>
<g >
<title>_dbus_rmutex_lock (9,679,881 samples, 0.36%)</title><rect x="992.6" y="245" width="4.3" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="995.60" y="255.5" ></text>
</g>
<g >
<title>wl_display_roundtrip_queue (4,867,811 samples, 0.18%)</title><rect x="996.9" y="277" width="2.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="999.93" y="287.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (95,460,934 samples, 3.56%)</title><rect x="1103.1" y="261" width="41.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1106.08" y="271.5" >[li..</text>
</g>
<g >
<title>[unknown] (7,894,438 samples, 0.29%)</title><rect x="118.5" y="165" width="3.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="121.49" y="175.5" ></text>
</g>
<g >
<title>engine::update_sprite (209,975,262 samples, 7.82%)</title><rect x="1007.8" y="325" width="92.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1010.76" y="335.5" >engine::upd..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="197" width="8.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1148.05" y="207.5" ></text>
</g>
<g >
<title>pthread_rwlock_rdlock (9,502,808 samples, 0.35%)</title><rect x="808.5" y="213" width="4.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="811.45" y="223.5" ></text>
</g>
<g >
<title>[libvulkan.so.1.4.350] (24,232,285 samples, 0.90%)</title><rect x="67.2" y="405" width="10.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="70.18" y="415.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (27,602,917 samples, 1.03%)</title><rect x="181.3" y="149" width="12.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="184.25" y="159.5" ></text>
</g>
<g >
<title>runtime::default_hasher_string (42,122,192 samples, 1.57%)</title><rect x="1050.8" y="277" width="18.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1053.81" y="287.5" ></text>
</g>
<g >
<title>main (26,830,303 samples, 1.00%)</title><rect x="55.4" y="389" width="11.8" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="58.39" y="399.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (17,893,270 samples, 0.67%)</title><rect x="55.4" y="309" width="7.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="58.39" y="319.5" ></text>
</g>
<g >
<title>drmSyncobjReset (6,288,764 samples, 0.23%)</title><rect x="829.7" y="261" width="2.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="832.71" y="271.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (17,893,270 samples, 0.67%)</title><rect x="55.4" y="325" width="7.9" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="58.39" y="335.5" ></text>
</g>
<g >
<title>runtime::memory_equal (7,749,106 samples, 0.29%)</title><rect x="438.7" y="261" width="3.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="441.69" y="271.5" ></text>
</g>
<g >
<title>_start (2,325,873,566 samples, 86.63%)</title><rect x="77.8" y="405" width="1022.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="80.83" y="415.5" >_start</text>
</g>
<g >
<title>[libvulkan_radeon.so] (95,460,934 samples, 3.56%)</title><rect x="1103.1" y="277" width="41.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1106.08" y="287.5" >[li..</text>
</g>
<g >
<title>crowd_perf (2,602,790,390 samples, 96.94%)</title><rect x="10.0" y="421" width="1143.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="13.00" y="431.5" >crowd_perf</text>
</g>
<g >
<title>[libc.so.6] (29,261,670 samples, 1.09%)</title><rect x="780.8" y="213" width="12.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="783.84" y="223.5" ></text>
</g>
<g >
<title>[libc.so.6] (9,248,689 samples, 0.34%)</title><rect x="135.4" y="261" width="4.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="138.42" y="271.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (241,237,142 samples, 8.98%)</title><rect x="631.9" y="293" width="106.0" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="634.88" y="303.5" >[libSDL3.so...</text>
</g>
<g >
<title>wl_proxy_marshal_array_flags (109,291,577 samples, 4.07%)</title><rect x="858.6" y="245" width="48.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="861.59" y="255.5" >wl_p..</text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (30,173,943 samples, 1.12%)</title><rect x="983.6" y="277" width="13.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="986.59" y="287.5" ></text>
</g>
<g >
<title>__$hasher$$string (45,610,072 samples, 1.70%)</title><rect x="399.5" y="293" width="20.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="402.45" y="303.5" ></text>
</g>
<g >
<title>[libc.so.6] (28,894,233 samples, 1.08%)</title><rect x="889.9" y="213" width="12.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="892.86" y="223.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (647,623,856 samples, 24.12%)</title><rect x="622.0" y="309" width="284.6" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="625.00" y="319.5" >[libSDL3.so.0.4.12]</text>
</g>
<g >
<title>pthread_mutex_lock (10,528,118 samples, 0.39%)</title><rect x="733.3" y="277" width="4.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="736.27" y="287.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (24,046,869 samples, 0.90%)</title><rect x="67.2" y="213" width="10.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="70.18" y="223.5" ></text>
</g>
<g >
<title>engine::end_frame (102,350,476 samples, 3.81%)</title><rect x="1100.1" y="389" width="44.9" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1103.05" y="399.5" >engi..</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (24,046,691 samples, 0.90%)</title><rect x="67.2" y="165" width="10.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="70.18" y="175.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (95,460,934 samples, 3.56%)</title><rect x="1103.1" y="293" width="41.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1106.08" y="303.5" >[li..</text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (33,057,356 samples, 1.23%)</title><rect x="93.9" y="261" width="14.5" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="96.88" y="271.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (305,619,941 samples, 11.38%)</title><rect x="93.9" y="293" width="134.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="96.88" y="303.5" >[libSDL3.so.0.4...</text>
</g>
<g >
<title>[libvulkan_radeon.so] (51,572,212 samples, 1.92%)</title><rect x="934.9" y="277" width="22.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="937.88" y="287.5" >[..</text>
</g>
<g >
<title>wl_cursor_surfa (82,120,003 samples, 3.06%)</title><rect x="1153.9" y="421" width="36.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="1156.91" y="431.5" >wl_..</text>
</g>
<g >
<title>wl_display_dispatch_queue_pending (4,867,811 samples, 0.18%)</title><rect x="996.9" y="229" width="2.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="999.93" y="239.5" ></text>
</g>
<g >
<title>drmSyncobjTimelineWait (17,210,837 samples, 0.64%)</title><rect x="197.2" y="213" width="7.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="200.20" y="223.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (159,373,716 samples, 5.94%)</title><rect x="158.2" y="245" width="70.0" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="161.16" y="255.5" >[libvul..</text>
</g>
<g >
<title>cfree (11,600,561 samples, 0.43%)</title><rect x="845.1" y="245" width="5.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="848.12" y="255.5" ></text>
</g>
<g >
<title> (66,188,790 samples, 2.47%)</title><rect x="592.9" y="293" width="29.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="595.91" y="303.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (64,906,447 samples, 2.42%)</title><rect x="968.3" y="293" width="28.6" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="971.33" y="303.5" >[l..</text>
</g>
<g >
<title>[libc.so.6] (8,072,467 samples, 0.30%)</title><rect x="189.8" y="101" width="3.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="192.84" y="111.5" ></text>
</g>
<g >
<title>_dbus_message_loader_queue_messages (9,529,738 samples, 0.35%)</title><rect x="988.4" y="197" width="4.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="991.41" y="207.5" ></text>
</g>
<g >
<title>engine::init (5,046,260 samples, 0.19%)</title><rect x="996.9" y="325" width="2.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="999.86" y="335.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (34,732,504 samples, 1.29%)</title><rect x="968.3" y="277" width="15.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="971.33" y="287.5" ></text>
</g>
<g >
<title>xkb_keymap_key_get_syms_by_level (4,867,811 samples, 0.18%)</title><rect x="996.9" y="69" width="2.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="999.93" y="79.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,821,044 samples, 1.15%)</title><rect x="108.4" y="229" width="13.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="111.41" y="239.5" ></text>
</g>
<g >
<title>[libc.so.6] (11,451,287 samples, 0.43%)</title><rect x="972.8" y="261" width="5.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="975.85" y="271.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (383,913,626 samples, 14.30%)</title><rect x="737.9" y="293" width="168.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="740.90" y="303.5" >[libvulkan_radeon.so]</text>
</g>
<g >
<title>drmIoctl (7,695,818 samples, 0.29%)</title><rect x="220.7" y="213" width="3.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="223.65" y="223.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (24,166,241 samples, 0.90%)</title><rect x="67.2" y="261" width="10.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="70.18" y="271.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (10,964,324 samples, 0.41%)</title><rect x="983.6" y="261" width="4.8" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="986.59" y="271.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (102,350,476 samples, 3.81%)</title><rect x="1100.1" y="357" width="44.9" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1103.05" y="367.5" >[lib..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="261" width="8.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1148.05" y="271.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (15,219,501 samples, 0.57%)</title><rect x="101.7" y="245" width="6.7" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="104.72" y="255.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (4,867,811 samples, 0.18%)</title><rect x="996.9" y="197" width="2.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="999.93" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (84,778,156 samples, 3.16%)</title><rect x="1107.8" y="245" width="37.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1110.78" y="255.5" >[li..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (23,874,617 samples, 0.89%)</title><rect x="793.7" y="213" width="10.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="796.70" y="223.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (115,859,622 samples, 4.32%)</title><rect x="906.6" y="309" width="50.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="909.62" y="319.5" >[libv..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (17,893,270 samples, 0.67%)</title><rect x="55.4" y="293" width="7.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="58.39" y="303.5" ></text>
</g>
<g >
<title>runtime::default_hasher (36,617,931 samples, 1.36%)</title><rect x="403.4" y="261" width="16.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="406.40" y="271.5" ></text>
</g>
<g >
<title>all (2,684,910,393 samples, 100%)</title><rect x="10.0" y="437" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="447.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (17,893,270 samples, 0.67%)</title><rect x="55.4" y="245" width="7.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="58.39" y="255.5" ></text>
</g>
<g >
<title>_dl_catch_exception (24,166,241 samples, 0.90%)</title><rect x="67.2" y="325" width="10.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="70.18" y="335.5" ></text>
</g>
<g >
<title>[libxkbcommon.so.0.13.2] (4,867,811 samples, 0.18%)</title><rect x="996.9" y="85" width="2.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="999.93" y="95.5" ></text>
</g>
<g >
<title>dbus_connection_get_dispatch_status (19,209,619 samples, 0.72%)</title><rect x="988.4" y="261" width="8.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="991.41" y="271.5" ></text>
</g>
<g >
<title>runtime::memory_equal (28,496,073 samples, 1.06%)</title><rect x="1083.2" y="261" width="12.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1086.21" y="271.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (24,166,241 samples, 0.90%)</title><rect x="67.2" y="229" width="10.6" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="70.18" y="239.5" ></text>
</g>
<g >
<title>ioctl (7,695,818 samples, 0.29%)</title><rect x="220.7" y="197" width="3.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="223.65" y="207.5" ></text>
</g>
<g >
<title>[libc.so.6] (19,760,380 samples, 0.74%)</title><rect x="999.1" y="293" width="8.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1002.07" y="303.5" ></text>
</g>
<g >
<title>drmIoctl (6,288,764 samples, 0.23%)</title><rect x="829.7" y="245" width="2.8" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="832.71" y="255.5" ></text>
</g>
<g >
<title>XkbKeyNumLevels (4,867,811 samples, 0.18%)</title><rect x="996.9" y="37" width="2.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="999.93" y="47.5" ></text>
</g>
<g >
<title>drmIoctl (15,765,125 samples, 0.59%)</title><rect x="209.3" y="213" width="6.9" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="212.26" y="223.5" ></text>
</g>
<g >
<title>[libvulkan.so.1.4.350] (24,232,285 samples, 0.90%)</title><rect x="67.2" y="389" width="10.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="70.18" y="399.5" ></text>
</g>
<g >
<title>ioctl (15,318,471 samples, 0.57%)</title><rect x="115.2" y="181" width="6.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="118.23" y="191.5" ></text>
</g>
<g >
<title>ioctl (15,765,125 samples, 0.59%)</title><rect x="209.3" y="197" width="6.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="212.26" y="207.5" ></text>
</g>
<g >
<title>engine::end_frame (788,023,763 samples, 29.35%)</title><rect x="622.0" y="325" width="346.3" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="625.00" y="335.5" >engine::end_frame</text>
</g>
<g >
<title>pthread_mutex_unlock (8,943,605 samples, 0.33%)</title><rect x="841.2" y="229" width="3.9" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="844.19" y="239.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (103,230,201 samples, 3.84%)</title><rect x="10.0" y="405" width="45.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="13.02" y="415.5" >[lib..</text>
</g>
<g >
<title>drmSyncobjDestroy (10,159,704 samples, 0.38%)</title><rect x="216.2" y="229" width="4.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="219.19" y="239.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (79,867,488 samples, 2.97%)</title><rect x="93.9" y="277" width="35.1" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="96.88" y="287.5" >[l..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="277" width="8.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1148.05" y="287.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (19,043,647 samples, 0.71%)</title><rect x="850.2" y="245" width="8.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="853.22" y="255.5" ></text>
</g>
<g >
<title>main (2,325,873,566 samples, 86.63%)</title><rect x="77.8" y="357" width="1022.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="80.83" y="367.5" >main</text>
</g>
<g >
<title>dlopen (24,166,241 samples, 0.90%)</title><rect x="67.2" y="373" width="10.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="70.18" y="383.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (10,221,359 samples, 0.38%)</title><rect x="1149.4" y="165" width="4.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1152.42" y="175.5" ></text>
</g>
<g >
<title>drmIoctl (10,159,704 samples, 0.38%)</title><rect x="216.2" y="213" width="4.5" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="219.19" y="223.5" ></text>
</g>
<g >
<title>runtime::map_seed_from_map_data (9,800,570 samples, 0.37%)</title><rect x="1095.7" y="293" width="4.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1098.73" y="303.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,329,704 samples, 0.31%)</title><rect x="878.6" y="213" width="3.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="881.64" y="223.5" ></text>
</g>
<g >
<title>main::main (26,830,303 samples, 1.00%)</title><rect x="55.4" y="373" width="11.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="58.39" y="383.5" ></text>
</g>
<g >
<title>[unknown] (6,288,764 samples, 0.23%)</title><rect x="829.7" y="213" width="2.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="832.71" y="223.5" ></text>
</g>
<g >
<title>_dbus_connection_unlock (10,964,324 samples, 0.41%)</title><rect x="983.6" y="229" width="4.8" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="986.59" y="239.5" ></text>
</g>
<g >
<title>main::main (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="389" width="8.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1148.05" y="399.5" ></text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (4,867,811 samples, 0.18%)</title><rect x="996.9" y="213" width="2.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="999.93" y="223.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (46,365,605 samples, 1.73%)</title><rect x="712.9" y="213" width="20.4" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="715.89" y="223.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (95,460,934 samples, 3.56%)</title><rect x="1103.1" y="325" width="41.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1106.08" y="335.5" >[li..</text>
</g>
<g >
<title>runtime::string_eq (24,488,583 samples, 0.91%)</title><rect x="431.3" y="277" width="10.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="434.33" y="287.5" ></text>
</g>
<g >
<title>runtime::_append_elem (66,188,790 samples, 2.47%)</title><rect x="592.9" y="277" width="29.1" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="595.91" y="287.5" >ru..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (17,893,270 samples, 0.67%)</title><rect x="55.4" y="213" width="7.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="58.39" y="223.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (27,602,917 samples, 1.03%)</title><rect x="181.3" y="165" width="12.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="184.25" y="175.5" ></text>
</g>
<g >
<title>engine::texture_run_len (16,440,341 samples, 0.61%)</title><rect x="957.5" y="309" width="7.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="960.54" y="319.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (21,953,219 samples, 0.82%)</title><rect x="674.6" y="261" width="9.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="677.64" y="271.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (225,752,453 samples, 8.41%)</title><rect x="129.0" y="277" width="99.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="131.99" y="287.5" >[libvulkan_r..</text>
</g>
<g >
<title>pthread_rwlock_wrlock (10,844,162 samples, 0.40%)</title><rect x="824.9" y="245" width="4.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="827.94" y="255.5" ></text>
</g>
<g >
<title>drmIoctl (8,073,129 samples, 0.30%)</title><rect x="817.8" y="213" width="3.5" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="820.80" y="223.5" ></text>
</g>
<g >
<title>engine::begin_frame (314,545,856 samples, 11.72%)</title><rect x="90.0" y="325" width="138.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="92.96" y="335.5" >engine::begin_frame</text>
</g>
<g >
<title>[libc.so.6] (24,166,241 samples, 0.90%)</title><rect x="67.2" y="309" width="10.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="70.18" y="319.5" ></text>
</g>
<g >
<title>xkb_keymap_key_get_level (4,867,811 samples, 0.18%)</title><rect x="996.9" y="53" width="2.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="999.93" y="63.5" ></text>
</g>
<g >
<title>wl_display_dispatch_queue_pending (40,392,981 samples, 1.50%)</title><rect x="832.5" y="261" width="17.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="835.47" y="271.5" ></text>
</g>
<g >
<title>_dl_catch_exception (24,166,241 samples, 0.90%)</title><rect x="67.2" y="245" width="10.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="70.18" y="255.5" ></text>
</g>
<g >
<title>runtime::string_eq (43,778,212 samples, 1.63%)</title><rect x="1076.5" y="277" width="19.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1079.49" y="287.5" ></text>
</g>
<g >
<title>ioctl (10,159,704 samples, 0.38%)</title><rect x="216.2" y="197" width="4.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="219.19" y="207.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (19,888,551 samples, 0.74%)</title><rect x="46.7" y="341" width="8.7" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="49.65" y="351.5" ></text>
</g>
<g >
<title>[unknown] (15,765,125 samples, 0.59%)</title><rect x="209.3" y="165" width="6.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="212.26" y="175.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (9,529,738 samples, 0.35%)</title><rect x="988.4" y="229" width="4.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="991.41" y="239.5" ></text>
</g>
<g >
<title>engine::end_frame (17,893,270 samples, 0.67%)</title><rect x="55.4" y="357" width="7.9" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="58.39" y="367.5" ></text>
</g>
<g >
<title>[libc.so.6] (10,250,972 samples, 0.38%)</title><rect x="943.0" y="261" width="4.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="946.02" y="271.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="213" width="8.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1148.05" y="223.5" ></text>
</g>
<g >
<title>ioctl (6,288,764 samples, 0.23%)</title><rect x="829.7" y="229" width="2.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="832.71" y="239.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (30,821,044 samples, 1.15%)</title><rect x="108.4" y="261" width="13.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="111.41" y="271.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (111,443,735 samples, 4.15%)</title><rect x="684.3" y="277" width="49.0" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="687.29" y="287.5" >[lib..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (8,072,467 samples, 0.30%)</title><rect x="189.8" y="117" width="3.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="192.84" y="127.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (166,719,792 samples, 6.21%)</title><rect x="756.4" y="261" width="73.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="759.43" y="271.5" >[libvulk..</text>
</g>
<g >
<title>drmSyncobjWait (30,821,044 samples, 1.15%)</title><rect x="108.4" y="213" width="13.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="111.41" y="223.5" ></text>
</g>
<g >
<title>drmSyncobjCreate (15,765,125 samples, 0.59%)</title><rect x="209.3" y="229" width="6.9" height="15.0" fill="rgb(224,87,21)" rx="2" ry="2" />
<text x="212.26" y="239.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (7,415,148 samples, 0.28%)</title><rect x="730.0" y="197" width="3.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="733.01" y="207.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (103,230,201 samples, 3.84%)</title><rect x="10.0" y="373" width="45.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="13.02" y="383.5" >[lib..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (201,870,466 samples, 7.52%)</title><rect x="139.5" y="261" width="88.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="142.48" y="271.5" >[libvulkan..</text>
</g>
<g >
<title>[libffi.so.8.4.1] (4,867,811 samples, 0.18%)</title><rect x="996.9" y="165" width="2.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="999.93" y="175.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (5,046,260 samples, 0.19%)</title><rect x="996.9" y="309" width="2.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="999.86" y="319.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (6,889,542 samples, 0.26%)</title><rect x="1100.1" y="341" width="3.0" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="1103.05" y="351.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (21,953,219 samples, 0.82%)</title><rect x="674.6" y="245" width="9.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="677.64" y="255.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (95,460,934 samples, 3.56%)</title><rect x="1103.1" y="309" width="41.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1106.08" y="319.5" >[li..</text>
</g>
<g >
<title>[libvulkan_radeon.so] (115,859,622 samples, 4.32%)</title><rect x="906.6" y="293" width="50.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="909.62" y="303.5" >[libv..</text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (44,437,369 samples, 1.66%)</title><rect x="35.9" y="357" width="19.5" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="38.86" y="367.5" ></text>
</g>
<g >
<title>[libc.so.6] (9,072,954 samples, 0.34%)</title><rect x="177.3" y="213" width="4.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="180.27" y="223.5" ></text>
</g>
<g >
<title>[unknown] (8,073,129 samples, 0.30%)</title><rect x="817.8" y="165" width="3.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="820.80" y="175.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (17,893,270 samples, 0.67%)</title><rect x="55.4" y="197" width="7.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="58.39" y="207.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (7,417,669 samples, 0.28%)</title><rect x="671.4" y="213" width="3.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="674.38" y="223.5" ></text>
</g>
<g >
<title>[libffi.so.8.4.1] (4,867,811 samples, 0.18%)</title><rect x="996.9" y="149" width="2.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="999.93" y="159.5" ></text>
</g>
<g >
<title>drmSyncobjExportSyncFile (7,695,818 samples, 0.29%)</title><rect x="220.7" y="229" width="3.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="223.65" y="239.5" ></text>
</g>
<g >
<title>wl_display_dispatch_queue_timeout (8,176,325 samples, 0.30%)</title><rect x="821.3" y="229" width="3.6" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="824.35" y="239.5" ></text>
</g>
<g >
<title>[libSDL3.so.0.4.12] (61,422,735 samples, 2.29%)</title><rect x="657.3" y="277" width="27.0" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="660.30" y="287.5" >[..</text>
</g>
<g >
<title>runtime::bounds_check_error (52,923,702 samples, 1.97%)</title><rect x="442.1" y="293" width="23.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="445.09" y="303.5" >r..</text>
</g>
<g >
<title>wl_display_flush (12,996,014 samples, 0.48%)</title><rect x="977.9" y="261" width="5.7" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="980.88" y="271.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (18,336,938 samples, 0.68%)</title><rect x="185.3" y="133" width="8.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="188.33" y="143.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (18,934,680 samples, 0.71%)</title><rect x="666.3" y="245" width="8.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="669.32" y="255.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,099,944 samples, 0.30%)</title><rect x="964.8" y="293" width="3.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="967.77" y="303.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (46,357,094 samples, 1.73%)</title><rect x="1124.7" y="213" width="20.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1127.66" y="223.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (9,253,781 samples, 0.34%)</title><rect x="902.6" y="229" width="4.0" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="905.56" y="239.5" ></text>
</g>
<g >
<title>runtime::append_elem:proc (66,188,790 samples, 2.47%)</title><rect x="592.9" y="309" width="29.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="595.91" y="319.5" >ru..</text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (19,551,372 samples, 0.73%)</title><rect x="836.5" y="245" width="8.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="839.53" y="255.5" ></text>
</g>
<g >
<title>malloc (10,230,153 samples, 0.38%)</title><rect x="204.8" y="213" width="4.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="207.77" y="223.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (36,285,312 samples, 1.35%)</title><rect x="181.3" y="213" width="15.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="184.25" y="223.5" ></text>
</g>
<g >
<title>runtime::default_hasher (32,213,905 samples, 1.20%)</title><rect x="1055.2" y="261" width="14.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1058.17" y="271.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.38.3] (10,964,324 samples, 0.41%)</title><rect x="983.6" y="245" width="4.8" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="986.59" y="255.5" ></text>
</g>
<g >
<title>main (20,165,936 samples, 0.75%)</title><rect x="1145.0" y="405" width="8.9" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="1148.05" y="415.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (15,861,806 samples, 0.59%)</title><rect x="1138.1" y="181" width="6.9" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1141.06" y="191.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (90,093,398 samples, 3.36%)</title><rect x="773.0" y="229" width="39.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="776.03" y="239.5" >[li..</text>
</g>
<g >
<title>[libwayland-client.so.0.25.0] (46,080,315 samples, 1.72%)</title><rect x="882.3" y="229" width="20.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="885.31" y="239.5" ></text>
</g>
<g >
<title>[libvulkan_radeon.so] (82,382,210 samples, 3.07%)</title><rect x="697.1" y="245" width="36.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="700.06" y="255.5" >[li..</text>
</g>
</g>
</svg>