Files
iris/flamegraph.svg
2025-11-17 13:55:49 -05:00

491 lines
93 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="406" onload="init(evt)" viewBox="0 0 1200 406" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#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[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
known_font_width = get_monospace_width(frames);
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
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);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// 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();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
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));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + 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
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, 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];
return;
}
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["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg: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 get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
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, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
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 = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
var to_update_text = [];
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
to_update_text.push(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
}
update_text_for_elements(el);
}
// 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_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
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 = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// 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 = term;
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.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
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 + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="406" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="389.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="389.00"> </text><svg id="frames" x="10" width="1180" total_samples="273"><g><title>ZSTD_compress (1 samples, 0.37%)</title><rect x="0.0000%" y="197" width="0.3663%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="1"/><text x="0.2500%" y="207.50"></text></g><g><title>ZSTD_compressCCtx (1 samples, 0.37%)</title><rect x="0.0000%" y="181" width="0.3663%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="1"/><text x="0.2500%" y="191.50"></text></g><g><title>ZSTD_compressEnd_public (1 samples, 0.37%)</title><rect x="0.0000%" y="165" width="0.3663%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="1"/><text x="0.2500%" y="175.50"></text></g><g><title>[libzstd.so.1.5.7] (1 samples, 0.37%)</title><rect x="0.0000%" y="149" width="0.3663%" height="15" fill="rgb(248,212,6)" fg:x="0" fg:w="1"/><text x="0.2500%" y="159.50"></text></g><g><title>[libzstd.so.1.5.7] (1 samples, 0.37%)</title><rect x="0.0000%" y="133" width="0.3663%" height="15" fill="rgb(208,68,35)" fg:x="0" fg:w="1"/><text x="0.2500%" y="143.50"></text></g><g><title>[libzstd.so.1.5.7] (1 samples, 0.37%)</title><rect x="0.0000%" y="117" width="0.3663%" height="15" fill="rgb(232,128,0)" fg:x="0" fg:w="1"/><text x="0.2500%" y="127.50"></text></g><g><title>ZSTD_compressBlock_doubleFast (1 samples, 0.37%)</title><rect x="0.0000%" y="101" width="0.3663%" height="15" fill="rgb(207,160,47)" fg:x="0" fg:w="1"/><text x="0.2500%" y="111.50"></text></g><g><title>iris:disk$0 (2 samples, 0.73%)</title><rect x="0.0000%" y="341" width="0.7326%" height="15" fill="rgb(228,23,34)" fg:x="0" fg:w="2"/><text x="0.2500%" y="351.50"></text></g><g><title>[libc.so.6] (2 samples, 0.73%)</title><rect x="0.0000%" y="325" width="0.7326%" height="15" fill="rgb(218,30,26)" fg:x="0" fg:w="2"/><text x="0.2500%" y="335.50"></text></g><g><title>[libc.so.6] (2 samples, 0.73%)</title><rect x="0.0000%" y="309" width="0.7326%" height="15" fill="rgb(220,122,19)" fg:x="0" fg:w="2"/><text x="0.2500%" y="319.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="0.0000%" y="293" width="0.7326%" height="15" fill="rgb(250,228,42)" fg:x="0" fg:w="2"/><text x="0.2500%" y="303.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="0.0000%" y="277" width="0.7326%" height="15" fill="rgb(240,193,28)" fg:x="0" fg:w="2"/><text x="0.2500%" y="287.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="0.0000%" y="261" width="0.7326%" height="15" fill="rgb(216,20,37)" fg:x="0" fg:w="2"/><text x="0.2500%" y="271.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="0.0000%" y="245" width="0.7326%" height="15" fill="rgb(206,188,39)" fg:x="0" fg:w="2"/><text x="0.2500%" y="255.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="0.0000%" y="229" width="0.7326%" height="15" fill="rgb(217,207,13)" fg:x="0" fg:w="2"/><text x="0.2500%" y="239.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="0.0000%" y="213" width="0.7326%" height="15" fill="rgb(231,73,38)" fg:x="0" fg:w="2"/><text x="0.2500%" y="223.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="0.3663%" y="197" width="0.3663%" height="15" fill="rgb(225,20,46)" fg:x="1" fg:w="1"/><text x="0.6163%" y="207.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="0.3663%" y="181" width="0.3663%" height="15" fill="rgb(210,31,41)" fg:x="1" fg:w="1"/><text x="0.6163%" y="191.50"></text></g><g><title>&lt;C as wgpu_hal::dynamic::command::DynCommandEncoder&gt;::copy_buffer_to_buffer (1 samples, 0.37%)</title><rect x="0.7326%" y="325" width="0.3663%" height="15" fill="rgb(221,200,47)" fg:x="2" fg:w="1"/><text x="0.9826%" y="335.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="0.7326%" y="309" width="0.3663%" height="15" fill="rgb(226,26,5)" fg:x="2" fg:w="1"/><text x="0.9826%" y="319.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="0.7326%" y="293" width="0.3663%" height="15" fill="rgb(249,33,26)" fg:x="2" fg:w="1"/><text x="0.9826%" y="303.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="0.7326%" y="277" width="0.3663%" height="15" fill="rgb(235,183,28)" fg:x="2" fg:w="1"/><text x="0.9826%" y="287.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="0.7326%" y="261" width="0.3663%" height="15" fill="rgb(221,5,38)" fg:x="2" fg:w="1"/><text x="0.9826%" y="271.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="0.7326%" y="245" width="0.3663%" height="15" fill="rgb(247,18,42)" fg:x="2" fg:w="1"/><text x="0.9826%" y="255.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="0.7326%" y="229" width="0.3663%" height="15" fill="rgb(241,131,45)" fg:x="2" fg:w="1"/><text x="0.9826%" y="239.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="0.7326%" y="213" width="0.3663%" height="15" fill="rgb(249,31,29)" fg:x="2" fg:w="1"/><text x="0.9826%" y="223.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="0.7326%" y="197" width="0.3663%" height="15" fill="rgb(225,111,53)" fg:x="2" fg:w="1"/><text x="0.9826%" y="207.50"></text></g><g><title>&lt;D as wgpu_hal::dynamic::device::DynDevice&gt;::create_render_pipeline (3 samples, 1.10%)</title><rect x="1.0989%" y="325" width="1.0989%" height="15" fill="rgb(238,160,17)" fg:x="3" fg:w="3"/><text x="1.3489%" y="335.50"></text></g><g><title>wgpu_hal::vulkan::device::&lt;impl wgpu_hal::Device for wgpu_hal::vulkan::Device&gt;::create_render_pipeline (3 samples, 1.10%)</title><rect x="1.0989%" y="309" width="1.0989%" height="15" fill="rgb(214,148,48)" fg:x="3" fg:w="3"/><text x="1.3489%" y="319.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="1.0989%" y="293" width="1.0989%" height="15" fill="rgb(232,36,49)" fg:x="3" fg:w="3"/><text x="1.3489%" y="303.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="1.0989%" y="277" width="1.0989%" height="15" fill="rgb(209,103,24)" fg:x="3" fg:w="3"/><text x="1.3489%" y="287.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="1.0989%" y="261" width="1.0989%" height="15" fill="rgb(229,88,8)" fg:x="3" fg:w="3"/><text x="1.3489%" y="271.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="1.0989%" y="245" width="1.0989%" height="15" fill="rgb(213,181,19)" fg:x="3" fg:w="3"/><text x="1.3489%" y="255.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="1.0989%" y="229" width="1.0989%" height="15" fill="rgb(254,191,54)" fg:x="3" fg:w="3"/><text x="1.3489%" y="239.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="1.0989%" y="213" width="1.0989%" height="15" fill="rgb(241,83,37)" fg:x="3" fg:w="3"/><text x="1.3489%" y="223.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="1.4652%" y="197" width="0.7326%" height="15" fill="rgb(233,36,39)" fg:x="4" fg:w="2"/><text x="1.7152%" y="207.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.37%)</title><rect x="2.1978%" y="325" width="0.3663%" height="15" fill="rgb(226,3,54)" fg:x="6" fg:w="1"/><text x="2.4478%" y="335.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (1 samples, 0.37%)</title><rect x="2.5641%" y="325" width="0.3663%" height="15" fill="rgb(245,192,40)" fg:x="7" fg:w="1"/><text x="2.8141%" y="335.50"></text></g><g><title>alloc::fmt::format::format_inner (1 samples, 0.37%)</title><rect x="2.5641%" y="309" width="0.3663%" height="15" fill="rgb(238,167,29)" fg:x="7" fg:w="1"/><text x="2.8141%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.37%)</title><rect x="2.5641%" y="293" width="0.3663%" height="15" fill="rgb(232,182,51)" fg:x="7" fg:w="1"/><text x="2.8141%" y="303.50"></text></g><g><title>core::fmt::write (1 samples, 0.37%)</title><rect x="2.5641%" y="277" width="0.3663%" height="15" fill="rgb(231,60,39)" fg:x="7" fg:w="1"/><text x="2.8141%" y="287.50"></text></g><g><title>&lt;iris::core::sense::CursorModule&lt;Ctx&gt; as iris::layout::event::EventModule&lt;E,Ctx&gt;&gt;::register (1 samples, 0.37%)</title><rect x="2.9304%" y="325" width="0.3663%" height="15" fill="rgb(208,69,12)" fg:x="8" fg:w="1"/><text x="3.1804%" y="335.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (1 samples, 0.37%)</title><rect x="2.9304%" y="309" width="0.3663%" height="15" fill="rgb(235,93,37)" fg:x="8" fg:w="1"/><text x="3.1804%" y="319.50"></text></g><g><title>malloc (1 samples, 0.37%)</title><rect x="2.9304%" y="293" width="0.3663%" height="15" fill="rgb(213,116,39)" fg:x="8" fg:w="1"/><text x="3.1804%" y="303.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="3.2967%" y="325" width="0.3663%" height="15" fill="rgb(222,207,29)" fg:x="9" fg:w="1"/><text x="3.5467%" y="335.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="3.6630%" y="293" width="0.3663%" height="15" fill="rgb(206,96,30)" fg:x="10" fg:w="1"/><text x="3.9130%" y="303.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="3.6630%" y="277" width="0.3663%" height="15" fill="rgb(218,138,4)" fg:x="10" fg:w="1"/><text x="3.9130%" y="287.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="3.6630%" y="261" width="0.3663%" height="15" fill="rgb(250,191,14)" fg:x="10" fg:w="1"/><text x="3.9130%" y="271.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="3.6630%" y="245" width="0.3663%" height="15" fill="rgb(239,60,40)" fg:x="10" fg:w="1"/><text x="3.9130%" y="255.50"></text></g><g><title>[libvulkan.so.1.4.328] (8 samples, 2.93%)</title><rect x="3.6630%" y="325" width="2.9304%" height="15" fill="rgb(206,27,48)" fg:x="10" fg:w="8"/><text x="3.9130%" y="335.50">[l..</text></g><g><title>[libvulkan.so.1.4.328] (8 samples, 2.93%)</title><rect x="3.6630%" y="309" width="2.9304%" height="15" fill="rgb(225,35,8)" fg:x="10" fg:w="8"/><text x="3.9130%" y="319.50">[l..</text></g><g><title>dlopen (7 samples, 2.56%)</title><rect x="4.0293%" y="293" width="2.5641%" height="15" fill="rgb(250,213,24)" fg:x="11" fg:w="7"/><text x="4.2793%" y="303.50">dl..</text></g><g><title>[libc.so.6] (7 samples, 2.56%)</title><rect x="4.0293%" y="277" width="2.5641%" height="15" fill="rgb(247,123,22)" fg:x="11" fg:w="7"/><text x="4.2793%" y="287.50">[l..</text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 2.56%)</title><rect x="4.0293%" y="261" width="2.5641%" height="15" fill="rgb(231,138,38)" fg:x="11" fg:w="7"/><text x="4.2793%" y="271.50">[l..</text></g><g><title>_dl_catch_exception (7 samples, 2.56%)</title><rect x="4.0293%" y="245" width="2.5641%" height="15" fill="rgb(231,145,46)" fg:x="11" fg:w="7"/><text x="4.2793%" y="255.50">_d..</text></g><g><title>[libc.so.6] (7 samples, 2.56%)</title><rect x="4.0293%" y="229" width="2.5641%" height="15" fill="rgb(251,118,11)" fg:x="11" fg:w="7"/><text x="4.2793%" y="239.50">[l..</text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 2.56%)</title><rect x="4.0293%" y="213" width="2.5641%" height="15" fill="rgb(217,147,25)" fg:x="11" fg:w="7"/><text x="4.2793%" y="223.50">[l..</text></g><g><title>_dl_catch_exception (7 samples, 2.56%)</title><rect x="4.0293%" y="197" width="2.5641%" height="15" fill="rgb(247,81,37)" fg:x="11" fg:w="7"/><text x="4.2793%" y="207.50">_d..</text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 2.56%)</title><rect x="4.0293%" y="181" width="2.5641%" height="15" fill="rgb(209,12,38)" fg:x="11" fg:w="7"/><text x="4.2793%" y="191.50">[l..</text></g><g><title>_dl_catch_exception (7 samples, 2.56%)</title><rect x="4.0293%" y="165" width="2.5641%" height="15" fill="rgb(227,1,9)" fg:x="11" fg:w="7"/><text x="4.2793%" y="175.50">_d..</text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 2.56%)</title><rect x="4.0293%" y="149" width="2.5641%" height="15" fill="rgb(248,47,43)" fg:x="11" fg:w="7"/><text x="4.2793%" y="159.50">[l..</text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 2.56%)</title><rect x="4.0293%" y="133" width="2.5641%" height="15" fill="rgb(221,10,30)" fg:x="11" fg:w="7"/><text x="4.2793%" y="143.50">[l..</text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 2.56%)</title><rect x="4.0293%" y="117" width="2.5641%" height="15" fill="rgb(210,229,1)" fg:x="11" fg:w="7"/><text x="4.2793%" y="127.50">[l..</text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 2.56%)</title><rect x="4.0293%" y="101" width="2.5641%" height="15" fill="rgb(222,148,37)" fg:x="11" fg:w="7"/><text x="4.2793%" y="111.50">[l..</text></g><g><title>[ld-linux-x86-64.so.2] (4 samples, 1.47%)</title><rect x="5.1282%" y="85" width="1.4652%" height="15" fill="rgb(234,67,33)" fg:x="14" fg:w="4"/><text x="5.3782%" y="95.50"></text></g><g><title>[ld-linux-x86-64.so.2] (1 samples, 0.37%)</title><rect x="6.2271%" y="69" width="0.3663%" height="15" fill="rgb(247,98,35)" fg:x="17" fg:w="1"/><text x="6.4771%" y="79.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="10.6227%" y="181" width="0.3663%" height="15" fill="rgb(247,138,52)" fg:x="29" fg:w="1"/><text x="10.8727%" y="191.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="10.6227%" y="165" width="0.3663%" height="15" fill="rgb(213,79,30)" fg:x="29" fg:w="1"/><text x="10.8727%" y="175.50"></text></g><g><title>[libvulkan_intel.so] (14 samples, 5.13%)</title><rect x="6.5934%" y="325" width="5.1282%" height="15" fill="rgb(246,177,23)" fg:x="18" fg:w="14"/><text x="6.8434%" y="335.50">[libvu..</text></g><g><title>[libvulkan_intel.so] (8 samples, 2.93%)</title><rect x="8.7912%" y="309" width="2.9304%" height="15" fill="rgb(230,62,27)" fg:x="24" fg:w="8"/><text x="9.0412%" y="319.50">[l..</text></g><g><title>[libvulkan_intel.so] (5 samples, 1.83%)</title><rect x="9.8901%" y="293" width="1.8315%" height="15" fill="rgb(216,154,8)" fg:x="27" fg:w="5"/><text x="10.1401%" y="303.50">[..</text></g><g><title>[libvulkan_intel.so] (5 samples, 1.83%)</title><rect x="9.8901%" y="277" width="1.8315%" height="15" fill="rgb(244,35,45)" fg:x="27" fg:w="5"/><text x="10.1401%" y="287.50">[..</text></g><g><title>[libvulkan_intel.so] (5 samples, 1.83%)</title><rect x="9.8901%" y="261" width="1.8315%" height="15" fill="rgb(251,115,12)" fg:x="27" fg:w="5"/><text x="10.1401%" y="271.50">[..</text></g><g><title>[libvulkan_intel.so] (5 samples, 1.83%)</title><rect x="9.8901%" y="245" width="1.8315%" height="15" fill="rgb(240,54,50)" fg:x="27" fg:w="5"/><text x="10.1401%" y="255.50">[..</text></g><g><title>[libvulkan_intel.so] (4 samples, 1.47%)</title><rect x="10.2564%" y="229" width="1.4652%" height="15" fill="rgb(233,84,52)" fg:x="28" fg:w="4"/><text x="10.5064%" y="239.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="10.6227%" y="213" width="1.0989%" height="15" fill="rgb(207,117,47)" fg:x="29" fg:w="3"/><text x="10.8727%" y="223.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="10.6227%" y="197" width="1.0989%" height="15" fill="rgb(249,43,39)" fg:x="29" fg:w="3"/><text x="10.8727%" y="207.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="10.9890%" y="181" width="0.7326%" height="15" fill="rgb(209,38,44)" fg:x="30" fg:w="2"/><text x="11.2390%" y="191.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="11.3553%" y="165" width="0.3663%" height="15" fill="rgb(236,212,23)" fg:x="31" fg:w="1"/><text x="11.6053%" y="175.50"></text></g><g><title>[libzstd.so.1.5.7] (1 samples, 0.37%)</title><rect x="11.7216%" y="325" width="0.3663%" height="15" fill="rgb(242,79,21)" fg:x="32" fg:w="1"/><text x="11.9716%" y="335.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.37%)</title><rect x="43.2234%" y="309" width="0.3663%" height="15" fill="rgb(211,96,35)" fg:x="118" fg:w="1"/><text x="43.4734%" y="319.50"></text></g><g><title>&lt;ttf_parser::tables::name::NamesIter as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.37%)</title><rect x="43.5897%" y="309" width="0.3663%" height="15" fill="rgb(253,215,40)" fg:x="119" fg:w="1"/><text x="43.8397%" y="319.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="43.9560%" y="309" width="0.3663%" height="15" fill="rgb(211,81,21)" fg:x="120" fg:w="1"/><text x="44.2060%" y="319.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="44.3223%" y="309" width="0.3663%" height="15" fill="rgb(208,190,38)" fg:x="121" fg:w="1"/><text x="44.5723%" y="319.50"></text></g><g><title>__rustc::__rust_realloc (1 samples, 0.37%)</title><rect x="44.6886%" y="309" width="0.3663%" height="15" fill="rgb(235,213,38)" fg:x="122" fg:w="1"/><text x="44.9386%" y="319.50"></text></g><g><title>fontdb::Database::make_shared_face_data (1 samples, 0.37%)</title><rect x="45.0549%" y="309" width="0.3663%" height="15" fill="rgb(237,122,38)" fg:x="123" fg:w="1"/><text x="45.3049%" y="319.50"></text></g><g><title>std::fs::OpenOptions::_open (1 samples, 0.37%)</title><rect x="45.0549%" y="293" width="0.3663%" height="15" fill="rgb(244,218,35)" fg:x="123" fg:w="1"/><text x="45.3049%" y="303.50"></text></g><g><title>std::sys::fs::unix::File::open_c (1 samples, 0.37%)</title><rect x="45.0549%" y="277" width="0.3663%" height="15" fill="rgb(240,68,47)" fg:x="123" fg:w="1"/><text x="45.3049%" y="287.50"></text></g><g><title>naga::front::wgsl::Frontend::parse (1 samples, 0.37%)</title><rect x="45.4212%" y="309" width="0.3663%" height="15" fill="rgb(210,16,53)" fg:x="124" fg:w="1"/><text x="45.6712%" y="319.50"></text></g><g><title>naga::front::wgsl::lower::Lowerer::lower (1 samples, 0.37%)</title><rect x="45.4212%" y="293" width="0.3663%" height="15" fill="rgb(235,124,12)" fg:x="124" fg:w="1"/><text x="45.6712%" y="303.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="45.4212%" y="277" width="0.3663%" height="15" fill="rgb(224,169,11)" fg:x="124" fg:w="1"/><text x="45.6712%" y="287.50"></text></g><g><title>naga::front::wgsl::lower::ExpressionContext::append_expression (1 samples, 0.37%)</title><rect x="45.7875%" y="309" width="0.3663%" height="15" fill="rgb(250,166,2)" fg:x="125" fg:w="1"/><text x="46.0375%" y="319.50"></text></g><g><title>naga::front::wgsl::parse::lexer::consume_token (1 samples, 0.37%)</title><rect x="46.1538%" y="309" width="0.3663%" height="15" fill="rgb(242,216,29)" fg:x="126" fg:w="1"/><text x="46.4038%" y="319.50"></text></g><g><title>read_fonts::tables::glyf::bytecode::decode::Decoder::decode (1 samples, 0.37%)</title><rect x="46.5201%" y="309" width="0.3663%" height="15" fill="rgb(230,116,27)" fg:x="127" fg:w="1"/><text x="46.7701%" y="319.50"></text></g><g><title>roxmltree::parse::parse (1 samples, 0.37%)</title><rect x="46.8864%" y="309" width="0.3663%" height="15" fill="rgb(228,99,48)" fg:x="128" fg:w="1"/><text x="47.1364%" y="319.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="46.8864%" y="293" width="0.3663%" height="15" fill="rgb(253,11,6)" fg:x="128" fg:w="1"/><text x="47.1364%" y="303.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="46.8864%" y="277" width="0.3663%" height="15" fill="rgb(247,143,39)" fg:x="128" fg:w="1"/><text x="47.1364%" y="287.50"></text></g><g><title>roxmltree::tokenizer::parse_comment (1 samples, 0.37%)</title><rect x="47.2527%" y="309" width="0.3663%" height="15" fill="rgb(236,97,10)" fg:x="129" fg:w="1"/><text x="47.5027%" y="319.50"></text></g><g><title>skrifa::outline::glyf::hint::value_stack::ValueStack::push_inline_operands (1 samples, 0.37%)</title><rect x="47.6190%" y="309" width="0.3663%" height="15" fill="rgb(233,208,19)" fg:x="130" fg:w="1"/><text x="47.8690%" y="319.50"></text></g><g><title>wgpu_core::track::texture::DeviceTextureTracker::set_from_tracker_and_drain_transitions (1 samples, 0.37%)</title><rect x="47.9853%" y="309" width="0.3663%" height="15" fill="rgb(216,164,2)" fg:x="131" fg:w="1"/><text x="48.2353%" y="319.50"></text></g><g><title>wgpu_hal::vulkan::device::&lt;impl wgpu_hal::Device for wgpu_hal::vulkan::Device&gt;::create_compute_pipeline (10 samples, 3.66%)</title><rect x="48.3516%" y="309" width="3.6630%" height="15" fill="rgb(220,129,5)" fg:x="132" fg:w="10"/><text x="48.6016%" y="319.50">wgpu..</text></g><g><title>[libvulkan_intel.so] (10 samples, 3.66%)</title><rect x="48.3516%" y="293" width="3.6630%" height="15" fill="rgb(242,17,10)" fg:x="132" fg:w="10"/><text x="48.6016%" y="303.50">[lib..</text></g><g><title>[libvulkan_intel.so] (10 samples, 3.66%)</title><rect x="48.3516%" y="277" width="3.6630%" height="15" fill="rgb(242,107,0)" fg:x="132" fg:w="10"/><text x="48.6016%" y="287.50">[lib..</text></g><g><title>[libvulkan_intel.so] (10 samples, 3.66%)</title><rect x="48.3516%" y="261" width="3.6630%" height="15" fill="rgb(251,28,31)" fg:x="132" fg:w="10"/><text x="48.6016%" y="271.50">[lib..</text></g><g><title>[libvulkan_intel.so] (10 samples, 3.66%)</title><rect x="48.3516%" y="245" width="3.6630%" height="15" fill="rgb(233,223,10)" fg:x="132" fg:w="10"/><text x="48.6016%" y="255.50">[lib..</text></g><g><title>[libvulkan_intel.so] (10 samples, 3.66%)</title><rect x="48.3516%" y="229" width="3.6630%" height="15" fill="rgb(215,21,27)" fg:x="132" fg:w="10"/><text x="48.6016%" y="239.50">[lib..</text></g><g><title>[libvulkan_intel.so] (7 samples, 2.56%)</title><rect x="49.4505%" y="213" width="2.5641%" height="15" fill="rgb(232,23,21)" fg:x="135" fg:w="7"/><text x="49.7005%" y="223.50">[l..</text></g><g><title>[libvulkan_intel.so] (5 samples, 1.83%)</title><rect x="50.1832%" y="197" width="1.8315%" height="15" fill="rgb(244,5,23)" fg:x="137" fg:w="5"/><text x="50.4332%" y="207.50">[..</text></g><g><title>[libvulkan_intel.so] (5 samples, 1.83%)</title><rect x="50.1832%" y="181" width="1.8315%" height="15" fill="rgb(226,81,46)" fg:x="137" fg:w="5"/><text x="50.4332%" y="191.50">[..</text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="50.9158%" y="165" width="1.0989%" height="15" fill="rgb(247,70,30)" fg:x="139" fg:w="3"/><text x="51.1658%" y="175.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="51.2821%" y="149" width="0.7326%" height="15" fill="rgb(212,68,19)" fg:x="140" fg:w="2"/><text x="51.5321%" y="159.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="51.6484%" y="133" width="0.3663%" height="15" fill="rgb(240,187,13)" fg:x="141" fg:w="1"/><text x="51.8984%" y="143.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="51.6484%" y="117" width="0.3663%" height="15" fill="rgb(223,113,26)" fg:x="141" fg:w="1"/><text x="51.8984%" y="127.50"></text></g><g><title>[libxkbcommon.so.0.12.3] (3 samples, 1.10%)</title><rect x="52.7473%" y="229" width="1.0989%" height="15" fill="rgb(206,192,2)" fg:x="144" fg:w="3"/><text x="52.9973%" y="239.50"></text></g><g><title>[unknown] (117 samples, 42.86%)</title><rect x="12.0879%" y="325" width="42.8571%" height="15" fill="rgb(241,108,4)" fg:x="33" fg:w="117"/><text x="12.3379%" y="335.50">[unknown]</text></g><g><title>winit::platform_impl::linux::common::xkb::compose::XkbComposeTable::new (8 samples, 2.93%)</title><rect x="52.0147%" y="309" width="2.9304%" height="15" fill="rgb(247,173,49)" fg:x="142" fg:w="8"/><text x="52.2647%" y="319.50">wi..</text></g><g><title>xkb_compose_table_new_from_locale (8 samples, 2.93%)</title><rect x="52.0147%" y="293" width="2.9304%" height="15" fill="rgb(224,114,35)" fg:x="142" fg:w="8"/><text x="52.2647%" y="303.50">xk..</text></g><g><title>[libxkbcommon.so.0.12.3] (8 samples, 2.93%)</title><rect x="52.0147%" y="277" width="2.9304%" height="15" fill="rgb(245,159,27)" fg:x="142" fg:w="8"/><text x="52.2647%" y="287.50">[l..</text></g><g><title>[libxkbcommon.so.0.12.3] (8 samples, 2.93%)</title><rect x="52.0147%" y="261" width="2.9304%" height="15" fill="rgb(245,172,44)" fg:x="142" fg:w="8"/><text x="52.2647%" y="271.50">[l..</text></g><g><title>[libxkbcommon.so.0.12.3] (7 samples, 2.56%)</title><rect x="52.3810%" y="245" width="2.5641%" height="15" fill="rgb(236,23,11)" fg:x="143" fg:w="7"/><text x="52.6310%" y="255.50">[l..</text></g><g><title>xkb_keysym_from_name (3 samples, 1.10%)</title><rect x="53.8462%" y="229" width="1.0989%" height="15" fill="rgb(205,117,38)" fg:x="147" fg:w="3"/><text x="54.0962%" y="239.50"></text></g><g><title>[libxkbcommon.so.0.12.3] (2 samples, 0.73%)</title><rect x="54.2125%" y="213" width="0.7326%" height="15" fill="rgb(237,72,25)" fg:x="148" fg:w="2"/><text x="54.4625%" y="223.50"></text></g><g><title>_start (1 samples, 0.37%)</title><rect x="54.9451%" y="325" width="0.3663%" height="15" fill="rgb(244,70,9)" fg:x="150" fg:w="1"/><text x="55.1951%" y="335.50"></text></g><g><title>__libc_start_main (1 samples, 0.37%)</title><rect x="54.9451%" y="309" width="0.3663%" height="15" fill="rgb(217,125,39)" fg:x="150" fg:w="1"/><text x="55.1951%" y="319.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="54.9451%" y="293" width="0.3663%" height="15" fill="rgb(235,36,10)" fg:x="150" fg:w="1"/><text x="55.1951%" y="303.50"></text></g><g><title>main (1 samples, 0.37%)</title><rect x="54.9451%" y="277" width="0.3663%" height="15" fill="rgb(251,123,47)" fg:x="150" fg:w="1"/><text x="55.1951%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.37%)</title><rect x="54.9451%" y="261" width="0.3663%" height="15" fill="rgb(221,13,13)" fg:x="150" fg:w="1"/><text x="55.1951%" y="271.50"></text></g><g><title>core::ptr::drop_in_place&lt;iris::layout::text::TextData&gt; (1 samples, 0.37%)</title><rect x="54.9451%" y="245" width="0.3663%" height="15" fill="rgb(238,131,9)" fg:x="150" fg:w="1"/><text x="55.1951%" y="255.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="54.9451%" y="229" width="0.3663%" height="15" fill="rgb(211,50,8)" fg:x="150" fg:w="1"/><text x="55.1951%" y="239.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="55.3114%" y="245" width="1.0989%" height="15" fill="rgb(245,182,24)" fg:x="151" fg:w="3"/><text x="55.5614%" y="255.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="56.0440%" y="229" width="0.3663%" height="15" fill="rgb(242,14,37)" fg:x="153" fg:w="1"/><text x="56.2940%" y="239.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="56.0440%" y="213" width="0.3663%" height="15" fill="rgb(246,228,12)" fg:x="153" fg:w="1"/><text x="56.2940%" y="223.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (4 samples, 1.47%)</title><rect x="55.3114%" y="325" width="1.4652%" height="15" fill="rgb(213,55,15)" fg:x="151" fg:w="4"/><text x="55.5614%" y="335.50"></text></g><g><title>vkDestroyDevice (4 samples, 1.47%)</title><rect x="55.3114%" y="309" width="1.4652%" height="15" fill="rgb(209,9,3)" fg:x="151" fg:w="4"/><text x="55.5614%" y="319.50"></text></g><g><title>[libvulkan.so.1.4.328] (4 samples, 1.47%)</title><rect x="55.3114%" y="293" width="1.4652%" height="15" fill="rgb(230,59,30)" fg:x="151" fg:w="4"/><text x="55.5614%" y="303.50"></text></g><g><title>[libvulkan_intel.so] (4 samples, 1.47%)</title><rect x="55.3114%" y="277" width="1.4652%" height="15" fill="rgb(209,121,21)" fg:x="151" fg:w="4"/><text x="55.5614%" y="287.50"></text></g><g><title>[libvulkan_intel.so] (4 samples, 1.47%)</title><rect x="55.3114%" y="261" width="1.4652%" height="15" fill="rgb(220,109,13)" fg:x="151" fg:w="4"/><text x="55.5614%" y="271.50"></text></g><g><title>cfree (1 samples, 0.37%)</title><rect x="56.4103%" y="245" width="0.3663%" height="15" fill="rgb(232,18,1)" fg:x="154" fg:w="1"/><text x="56.6603%" y="255.50"></text></g><g><title>anon.9f23d8cf46690d57620ab1dce412144b.148.llvm.5883687114920204857 (1 samples, 0.37%)</title><rect x="56.7766%" y="325" width="0.3663%" height="15" fill="rgb(215,41,42)" fg:x="155" fg:w="1"/><text x="57.0266%" y="335.50"></text></g><g><title>wgpu_hal::vulkan::adapter::&lt;impl wgpu_hal::Adapter for wgpu_hal::vulkan::Adapter&gt;::surface_capabilities (1 samples, 0.37%)</title><rect x="56.7766%" y="309" width="0.3663%" height="15" fill="rgb(224,123,36)" fg:x="155" fg:w="1"/><text x="57.0266%" y="319.50"></text></g><g><title>ash::prelude::read_into_uninitialized_vector (1 samples, 0.37%)</title><rect x="56.7766%" y="293" width="0.3663%" height="15" fill="rgb(240,125,3)" fg:x="155" fg:w="1"/><text x="57.0266%" y="303.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="56.7766%" y="277" width="0.3663%" height="15" fill="rgb(205,98,50)" fg:x="155" fg:w="1"/><text x="57.0266%" y="287.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="56.7766%" y="261" width="0.3663%" height="15" fill="rgb(205,185,37)" fg:x="155" fg:w="1"/><text x="57.0266%" y="271.50"></text></g><g><title>wl_display_roundtrip_queue (1 samples, 0.37%)</title><rect x="56.7766%" y="245" width="0.3663%" height="15" fill="rgb(238,207,15)" fg:x="155" fg:w="1"/><text x="57.0266%" y="255.50"></text></g><g><title>wl_display_dispatch_queue (1 samples, 0.37%)</title><rect x="56.7766%" y="229" width="0.3663%" height="15" fill="rgb(213,199,42)" fg:x="155" fg:w="1"/><text x="57.0266%" y="239.50"></text></g><g><title>wl_display_dispatch_queue_timeout (1 samples, 0.37%)</title><rect x="56.7766%" y="213" width="0.3663%" height="15" fill="rgb(235,201,11)" fg:x="155" fg:w="1"/><text x="57.0266%" y="223.50"></text></g><g><title>wl_display_dispatch_queue_pending (1 samples, 0.37%)</title><rect x="56.7766%" y="197" width="0.3663%" height="15" fill="rgb(207,46,11)" fg:x="155" fg:w="1"/><text x="57.0266%" y="207.50"></text></g><g><title>[libwayland-client.so.0.24.0] (1 samples, 0.37%)</title><rect x="56.7766%" y="181" width="0.3663%" height="15" fill="rgb(241,35,35)" fg:x="155" fg:w="1"/><text x="57.0266%" y="191.50"></text></g><g><title>[libwayland-client.so.0.24.0] (1 samples, 0.37%)</title><rect x="56.7766%" y="165" width="0.3663%" height="15" fill="rgb(243,32,47)" fg:x="155" fg:w="1"/><text x="57.0266%" y="175.50"></text></g><g><title>[libffi.so.8.2.0] (1 samples, 0.37%)</title><rect x="56.7766%" y="149" width="0.3663%" height="15" fill="rgb(247,202,23)" fg:x="155" fg:w="1"/><text x="57.0266%" y="159.50"></text></g><g><title>[libffi.so.8.2.0] (1 samples, 0.37%)</title><rect x="56.7766%" y="133" width="0.3663%" height="15" fill="rgb(219,102,11)" fg:x="155" fg:w="1"/><text x="57.0266%" y="143.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="57.1429%" y="309" width="0.3663%" height="15" fill="rgb(243,110,44)" fg:x="156" fg:w="1"/><text x="57.3929%" y="319.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="57.1429%" y="293" width="0.3663%" height="15" fill="rgb(222,74,54)" fg:x="156" fg:w="1"/><text x="57.3929%" y="303.50"></text></g><g><title>wl_display_roundtrip_queue (1 samples, 0.37%)</title><rect x="57.1429%" y="277" width="0.3663%" height="15" fill="rgb(216,99,12)" fg:x="156" fg:w="1"/><text x="57.3929%" y="287.50"></text></g><g><title>wl_display_dispatch_queue (1 samples, 0.37%)</title><rect x="57.1429%" y="261" width="0.3663%" height="15" fill="rgb(226,22,26)" fg:x="156" fg:w="1"/><text x="57.3929%" y="271.50"></text></g><g><title>wl_display_dispatch_queue_timeout (1 samples, 0.37%)</title><rect x="57.1429%" y="245" width="0.3663%" height="15" fill="rgb(217,163,10)" fg:x="156" fg:w="1"/><text x="57.3929%" y="255.50"></text></g><g><title>wl_display_dispatch_queue_pending (1 samples, 0.37%)</title><rect x="57.1429%" y="229" width="0.3663%" height="15" fill="rgb(213,25,53)" fg:x="156" fg:w="1"/><text x="57.3929%" y="239.50"></text></g><g><title>[libwayland-client.so.0.24.0] (1 samples, 0.37%)</title><rect x="57.1429%" y="213" width="0.3663%" height="15" fill="rgb(252,105,26)" fg:x="156" fg:w="1"/><text x="57.3929%" y="223.50"></text></g><g><title>[libwayland-client.so.0.24.0] (1 samples, 0.37%)</title><rect x="57.1429%" y="197" width="0.3663%" height="15" fill="rgb(220,39,43)" fg:x="156" fg:w="1"/><text x="57.3929%" y="207.50"></text></g><g><title>ffi_call (1 samples, 0.37%)</title><rect x="57.1429%" y="181" width="0.3663%" height="15" fill="rgb(229,68,48)" fg:x="156" fg:w="1"/><text x="57.3929%" y="191.50"></text></g><g><title>[libffi.so.8.2.0] (1 samples, 0.37%)</title><rect x="57.1429%" y="165" width="0.3663%" height="15" fill="rgb(252,8,32)" fg:x="156" fg:w="1"/><text x="57.3929%" y="175.50"></text></g><g><title>[libffi.so.8.2.0] (1 samples, 0.37%)</title><rect x="57.1429%" y="149" width="0.3663%" height="15" fill="rgb(223,20,43)" fg:x="156" fg:w="1"/><text x="57.3929%" y="159.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="57.1429%" y="133" width="0.3663%" height="15" fill="rgb(229,81,49)" fg:x="156" fg:w="1"/><text x="57.3929%" y="143.50"></text></g><g><title>wl_proxy_marshal_flags (1 samples, 0.37%)</title><rect x="57.1429%" y="117" width="0.3663%" height="15" fill="rgb(236,28,36)" fg:x="156" fg:w="1"/><text x="57.3929%" y="127.50"></text></g><g><title>wl_proxy_marshal_array_flags (1 samples, 0.37%)</title><rect x="57.1429%" y="101" width="0.3663%" height="15" fill="rgb(249,185,26)" fg:x="156" fg:w="1"/><text x="57.3929%" y="111.50"></text></g><g><title>[libVkLayer_MESA_device_select.so] (1 samples, 0.37%)</title><rect x="57.5092%" y="293" width="0.3663%" height="15" fill="rgb(249,174,33)" fg:x="157" fg:w="1"/><text x="57.7592%" y="303.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="57.5092%" y="277" width="0.3663%" height="15" fill="rgb(233,201,37)" fg:x="157" fg:w="1"/><text x="57.7592%" y="287.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="57.5092%" y="261" width="0.3663%" height="15" fill="rgb(221,78,26)" fg:x="157" fg:w="1"/><text x="57.7592%" y="271.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="57.5092%" y="245" width="0.3663%" height="15" fill="rgb(250,127,30)" fg:x="157" fg:w="1"/><text x="57.7592%" y="255.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="57.5092%" y="229" width="0.3663%" height="15" fill="rgb(230,49,44)" fg:x="157" fg:w="1"/><text x="57.7592%" y="239.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="57.5092%" y="213" width="0.3663%" height="15" fill="rgb(229,67,23)" fg:x="157" fg:w="1"/><text x="57.7592%" y="223.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="57.5092%" y="197" width="0.3663%" height="15" fill="rgb(249,83,47)" fg:x="157" fg:w="1"/><text x="57.7592%" y="207.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="57.5092%" y="181" width="0.3663%" height="15" fill="rgb(215,43,3)" fg:x="157" fg:w="1"/><text x="57.7592%" y="191.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="57.5092%" y="165" width="0.3663%" height="15" fill="rgb(238,154,13)" fg:x="157" fg:w="1"/><text x="57.7592%" y="175.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="57.5092%" y="149" width="0.3663%" height="15" fill="rgb(219,56,2)" fg:x="157" fg:w="1"/><text x="57.7592%" y="159.50"></text></g><g><title>ash::prelude::read_into_uninitialized_vector (3 samples, 1.10%)</title><rect x="57.1429%" y="325" width="1.0989%" height="15" fill="rgb(233,0,4)" fg:x="156" fg:w="3"/><text x="57.3929%" y="335.50"></text></g><g><title>vkEnumeratePhysicalDevices (2 samples, 0.73%)</title><rect x="57.5092%" y="309" width="0.7326%" height="15" fill="rgb(235,30,7)" fg:x="157" fg:w="2"/><text x="57.7592%" y="319.50"></text></g><g><title>[libvulkan_intel_hasvk.so] (1 samples, 0.37%)</title><rect x="57.8755%" y="293" width="0.3663%" height="15" fill="rgb(250,79,13)" fg:x="158" fg:w="1"/><text x="58.1255%" y="303.50"></text></g><g><title>[libvulkan_intel_hasvk.so] (1 samples, 0.37%)</title><rect x="57.8755%" y="277" width="0.3663%" height="15" fill="rgb(211,146,34)" fg:x="158" fg:w="1"/><text x="58.1255%" y="287.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="57.8755%" y="261" width="0.3663%" height="15" fill="rgb(228,22,38)" fg:x="158" fg:w="1"/><text x="58.1255%" y="271.50"></text></g><g><title>core::iter::traits::iterator::Iterator::partition (1 samples, 0.37%)</title><rect x="58.2418%" y="325" width="0.3663%" height="15" fill="rgb(235,168,5)" fg:x="159" fg:w="1"/><text x="58.4918%" y="335.50"></text></g><g><title>core::ffi::c_str::CStr::from_bytes_until_nul (1 samples, 0.37%)</title><rect x="58.2418%" y="309" width="0.3663%" height="15" fill="rgb(221,155,16)" fg:x="159" fg:w="1"/><text x="58.4918%" y="319.50"></text></g><g><title>core::ptr::drop_in_place&lt;iris::render::texture::GpuTextures&gt; (1 samples, 0.37%)</title><rect x="58.6081%" y="325" width="0.3663%" height="15" fill="rgb(215,215,53)" fg:x="160" fg:w="1"/><text x="58.8581%" y="335.50"></text></g><g><title>&lt;wgpu_hal::vulkan::CommandEncoder as core::ops::drop::Drop&gt;::drop (1 samples, 0.37%)</title><rect x="58.6081%" y="309" width="0.3663%" height="15" fill="rgb(223,4,10)" fg:x="160" fg:w="1"/><text x="58.8581%" y="319.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="58.6081%" y="293" width="0.3663%" height="15" fill="rgb(234,103,6)" fg:x="160" fg:w="1"/><text x="58.8581%" y="303.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="58.6081%" y="277" width="0.3663%" height="15" fill="rgb(227,97,0)" fg:x="160" fg:w="1"/><text x="58.8581%" y="287.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="58.6081%" y="261" width="0.3663%" height="15" fill="rgb(234,150,53)" fg:x="160" fg:w="1"/><text x="58.8581%" y="271.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="58.6081%" y="245" width="0.3663%" height="15" fill="rgb(228,201,54)" fg:x="160" fg:w="1"/><text x="58.8581%" y="255.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="58.6081%" y="229" width="0.3663%" height="15" fill="rgb(222,22,37)" fg:x="160" fg:w="1"/><text x="58.8581%" y="239.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="58.6081%" y="213" width="0.3663%" height="15" fill="rgb(237,53,32)" fg:x="160" fg:w="1"/><text x="58.8581%" y="223.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="58.6081%" y="197" width="0.3663%" height="15" fill="rgb(233,25,53)" fg:x="160" fg:w="1"/><text x="58.8581%" y="207.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="58.6081%" y="181" width="0.3663%" height="15" fill="rgb(210,40,34)" fg:x="160" fg:w="1"/><text x="58.8581%" y="191.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S,A&gt;::insert (1 samples, 0.37%)</title><rect x="58.9744%" y="325" width="0.3663%" height="15" fill="rgb(241,220,44)" fg:x="161" fg:w="1"/><text x="59.2244%" y="335.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T,A&gt;::reserve_rehash (1 samples, 0.37%)</title><rect x="58.9744%" y="309" width="0.3663%" height="15" fill="rgb(235,28,35)" fg:x="161" fg:w="1"/><text x="59.2244%" y="319.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="58.9744%" y="293" width="0.3663%" height="15" fill="rgb(210,56,17)" fg:x="161" fg:w="1"/><text x="59.2244%" y="303.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="58.9744%" y="277" width="0.3663%" height="15" fill="rgb(224,130,29)" fg:x="161" fg:w="1"/><text x="59.2244%" y="287.50"></text></g><g><title>libloading::os::unix::Library::get_impl (1 samples, 0.37%)</title><rect x="59.3407%" y="325" width="0.3663%" height="15" fill="rgb(235,212,8)" fg:x="162" fg:w="1"/><text x="59.5907%" y="335.50"></text></g><g><title>dlsym (1 samples, 0.37%)</title><rect x="59.3407%" y="309" width="0.3663%" height="15" fill="rgb(223,33,50)" fg:x="162" fg:w="1"/><text x="59.5907%" y="319.50"></text></g><g><title>naga::front::wgsl::parse::lexer::consume_token (1 samples, 0.37%)</title><rect x="59.7070%" y="325" width="0.3663%" height="15" fill="rgb(219,149,13)" fg:x="163" fg:w="1"/><text x="59.9570%" y="335.50"></text></g><g><title>naga::front::wgsl::parse::Parser::unary_expression::{{closure}} (1 samples, 0.37%)</title><rect x="59.7070%" y="309" width="0.3663%" height="15" fill="rgb(250,156,29)" fg:x="163" fg:w="1"/><text x="59.9570%" y="319.50"></text></g><g><title>naga::front::wgsl::parse::Parser::primary_expression (1 samples, 0.37%)</title><rect x="59.7070%" y="293" width="0.3663%" height="15" fill="rgb(216,193,19)" fg:x="163" fg:w="1"/><text x="59.9570%" y="303.50"></text></g><g><title>skrifa::outline::glyf::hint::engine::dispatch::&lt;impl skrifa::outline::glyf::hint::engine::Engine&gt;::run (3 samples, 1.10%)</title><rect x="60.0733%" y="325" width="1.0989%" height="15" fill="rgb(216,135,14)" fg:x="164" fg:w="3"/><text x="60.3233%" y="335.50"></text></g><g><title>ttf_parser::tables::name::Table::parse (1 samples, 0.37%)</title><rect x="61.1722%" y="325" width="0.3663%" height="15" fill="rgb(241,47,5)" fg:x="167" fg:w="1"/><text x="61.4222%" y="335.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="61.5385%" y="261" width="0.7326%" height="15" fill="rgb(233,42,35)" fg:x="168" fg:w="2"/><text x="61.7885%" y="271.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="61.5385%" y="245" width="0.7326%" height="15" fill="rgb(231,13,6)" fg:x="168" fg:w="2"/><text x="61.7885%" y="255.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="61.5385%" y="229" width="0.7326%" height="15" fill="rgb(207,181,40)" fg:x="168" fg:w="2"/><text x="61.7885%" y="239.50"></text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="61.5385%" y="213" width="0.7326%" height="15" fill="rgb(254,173,49)" fg:x="168" fg:w="2"/><text x="61.7885%" y="223.50"></text></g><g><title>XML_ParseBuffer (2 samples, 0.73%)</title><rect x="61.5385%" y="197" width="0.7326%" height="15" fill="rgb(221,1,38)" fg:x="168" fg:w="2"/><text x="61.7885%" y="207.50"></text></g><g><title>[libexpat.so.1.11.1] (2 samples, 0.73%)</title><rect x="61.5385%" y="181" width="0.7326%" height="15" fill="rgb(206,124,46)" fg:x="168" fg:w="2"/><text x="61.7885%" y="191.50"></text></g><g><title>[libVkLayer_MESA_device_select.so] (4 samples, 1.47%)</title><rect x="61.5385%" y="293" width="1.4652%" height="15" fill="rgb(249,21,11)" fg:x="168" fg:w="4"/><text x="61.7885%" y="303.50"></text></g><g><title>[libvulkan.so.1.4.328] (4 samples, 1.47%)</title><rect x="61.5385%" y="277" width="1.4652%" height="15" fill="rgb(222,201,40)" fg:x="168" fg:w="4"/><text x="61.7885%" y="287.50"></text></g><g><title>[libvulkan_intel_hasvk.so] (2 samples, 0.73%)</title><rect x="62.2711%" y="261" width="0.7326%" height="15" fill="rgb(235,61,29)" fg:x="170" fg:w="2"/><text x="62.5211%" y="271.50"></text></g><g><title>[libvulkan_intel_hasvk.so] (2 samples, 0.73%)</title><rect x="62.2711%" y="245" width="0.7326%" height="15" fill="rgb(219,207,3)" fg:x="170" fg:w="2"/><text x="62.5211%" y="255.50"></text></g><g><title>[libvulkan_intel_hasvk.so] (2 samples, 0.73%)</title><rect x="62.2711%" y="229" width="0.7326%" height="15" fill="rgb(222,56,46)" fg:x="170" fg:w="2"/><text x="62.5211%" y="239.50"></text></g><g><title>[libvulkan_intel_hasvk.so] (2 samples, 0.73%)</title><rect x="62.2711%" y="213" width="0.7326%" height="15" fill="rgb(239,76,54)" fg:x="170" fg:w="2"/><text x="62.5211%" y="223.50"></text></g><g><title>XML_ParseBuffer (2 samples, 0.73%)</title><rect x="62.2711%" y="197" width="0.7326%" height="15" fill="rgb(231,124,27)" fg:x="170" fg:w="2"/><text x="62.5211%" y="207.50"></text></g><g><title>[libexpat.so.1.11.1] (2 samples, 0.73%)</title><rect x="62.2711%" y="181" width="0.7326%" height="15" fill="rgb(249,195,6)" fg:x="170" fg:w="2"/><text x="62.5211%" y="191.50"></text></g><g><title>[libexpat.so.1.11.1] (2 samples, 0.73%)</title><rect x="62.2711%" y="165" width="0.7326%" height="15" fill="rgb(237,174,47)" fg:x="170" fg:w="2"/><text x="62.5211%" y="175.50"></text></g><g><title>[libexpat.so.1.11.1] (2 samples, 0.73%)</title><rect x="62.2711%" y="149" width="0.7326%" height="15" fill="rgb(206,201,31)" fg:x="170" fg:w="2"/><text x="62.5211%" y="159.50"></text></g><g><title>[libexpat.so.1.11.1] (2 samples, 0.73%)</title><rect x="62.2711%" y="133" width="0.7326%" height="15" fill="rgb(231,57,52)" fg:x="170" fg:w="2"/><text x="62.5211%" y="143.50"></text></g><g><title>[libexpat.so.1.11.1] (1 samples, 0.37%)</title><rect x="62.6374%" y="117" width="0.3663%" height="15" fill="rgb(248,177,22)" fg:x="171" fg:w="1"/><text x="62.8874%" y="127.50"></text></g><g><title>[libexpat.so.1.11.1] (1 samples, 0.37%)</title><rect x="62.6374%" y="101" width="0.3663%" height="15" fill="rgb(215,211,37)" fg:x="171" fg:w="1"/><text x="62.8874%" y="111.50"></text></g><g><title>[libexpat.so.1.11.1] (1 samples, 0.37%)</title><rect x="62.6374%" y="85" width="0.3663%" height="15" fill="rgb(241,128,51)" fg:x="171" fg:w="1"/><text x="62.8874%" y="95.50"></text></g><g><title>[libexpat.so.1.11.1] (1 samples, 0.37%)</title><rect x="62.6374%" y="69" width="0.3663%" height="15" fill="rgb(227,165,31)" fg:x="171" fg:w="1"/><text x="62.8874%" y="79.50"></text></g><g><title>vkCreateInstance (5 samples, 1.83%)</title><rect x="61.5385%" y="325" width="1.8315%" height="15" fill="rgb(228,167,24)" fg:x="168" fg:w="5"/><text x="61.7885%" y="335.50">v..</text></g><g><title>[libvulkan.so.1.4.328] (5 samples, 1.83%)</title><rect x="61.5385%" y="309" width="1.8315%" height="15" fill="rgb(228,143,12)" fg:x="168" fg:w="5"/><text x="61.7885%" y="319.50">[..</text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="63.0037%" y="293" width="0.3663%" height="15" fill="rgb(249,149,8)" fg:x="172" fg:w="1"/><text x="63.2537%" y="303.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="63.0037%" y="277" width="0.3663%" height="15" fill="rgb(243,35,44)" fg:x="172" fg:w="1"/><text x="63.2537%" y="287.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="63.0037%" y="261" width="0.3663%" height="15" fill="rgb(246,89,9)" fg:x="172" fg:w="1"/><text x="63.2537%" y="271.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="63.0037%" y="245" width="0.3663%" height="15" fill="rgb(233,213,13)" fg:x="172" fg:w="1"/><text x="63.2537%" y="255.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="63.0037%" y="229" width="0.3663%" height="15" fill="rgb(233,141,41)" fg:x="172" fg:w="1"/><text x="63.2537%" y="239.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="63.0037%" y="213" width="0.3663%" height="15" fill="rgb(239,167,4)" fg:x="172" fg:w="1"/><text x="63.2537%" y="223.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="63.0037%" y="197" width="0.3663%" height="15" fill="rgb(209,217,16)" fg:x="172" fg:w="1"/><text x="63.2537%" y="207.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="63.7363%" y="197" width="0.3663%" height="15" fill="rgb(219,88,35)" fg:x="174" fg:w="1"/><text x="63.9863%" y="207.50"></text></g><g><title>vkEnumerateInstanceExtensionProperties (3 samples, 1.10%)</title><rect x="63.3700%" y="325" width="1.0989%" height="15" fill="rgb(220,193,23)" fg:x="173" fg:w="3"/><text x="63.6200%" y="335.50"></text></g><g><title>[libvulkan.so.1.4.328] (3 samples, 1.10%)</title><rect x="63.3700%" y="309" width="1.0989%" height="15" fill="rgb(230,90,52)" fg:x="173" fg:w="3"/><text x="63.6200%" y="319.50"></text></g><g><title>[libvulkan.so.1.4.328] (3 samples, 1.10%)</title><rect x="63.3700%" y="293" width="1.0989%" height="15" fill="rgb(252,106,19)" fg:x="173" fg:w="3"/><text x="63.6200%" y="303.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="63.7363%" y="277" width="0.7326%" height="15" fill="rgb(206,74,20)" fg:x="174" fg:w="2"/><text x="63.9863%" y="287.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="63.7363%" y="261" width="0.7326%" height="15" fill="rgb(230,138,44)" fg:x="174" fg:w="2"/><text x="63.9863%" y="271.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="63.7363%" y="245" width="0.7326%" height="15" fill="rgb(235,182,43)" fg:x="174" fg:w="2"/><text x="63.9863%" y="255.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="63.7363%" y="229" width="0.7326%" height="15" fill="rgb(242,16,51)" fg:x="174" fg:w="2"/><text x="63.9863%" y="239.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="63.7363%" y="213" width="0.7326%" height="15" fill="rgb(248,9,4)" fg:x="174" fg:w="2"/><text x="63.9863%" y="223.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.1026%" y="197" width="0.3663%" height="15" fill="rgb(210,31,22)" fg:x="175" fg:w="1"/><text x="64.3526%" y="207.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.1026%" y="181" width="0.3663%" height="15" fill="rgb(239,54,39)" fg:x="175" fg:w="1"/><text x="64.3526%" y="191.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.1026%" y="165" width="0.3663%" height="15" fill="rgb(230,99,41)" fg:x="175" fg:w="1"/><text x="64.3526%" y="175.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.1026%" y="149" width="0.3663%" height="15" fill="rgb(253,106,12)" fg:x="175" fg:w="1"/><text x="64.3526%" y="159.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.1026%" y="133" width="0.3663%" height="15" fill="rgb(213,46,41)" fg:x="175" fg:w="1"/><text x="64.3526%" y="143.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.1026%" y="117" width="0.3663%" height="15" fill="rgb(215,133,35)" fg:x="175" fg:w="1"/><text x="64.3526%" y="127.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.1026%" y="101" width="0.3663%" height="15" fill="rgb(213,28,5)" fg:x="175" fg:w="1"/><text x="64.3526%" y="111.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.1026%" y="85" width="0.3663%" height="15" fill="rgb(215,77,49)" fg:x="175" fg:w="1"/><text x="64.3526%" y="95.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="64.4689%" y="117" width="0.3663%" height="15" fill="rgb(248,100,22)" fg:x="176" fg:w="1"/><text x="64.7189%" y="127.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="64.4689%" y="101" width="0.3663%" height="15" fill="rgb(208,67,9)" fg:x="176" fg:w="1"/><text x="64.7189%" y="111.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="64.4689%" y="261" width="0.7326%" height="15" fill="rgb(219,133,21)" fg:x="176" fg:w="2"/><text x="64.7189%" y="271.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="64.4689%" y="245" width="0.7326%" height="15" fill="rgb(246,46,29)" fg:x="176" fg:w="2"/><text x="64.7189%" y="255.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="64.4689%" y="229" width="0.7326%" height="15" fill="rgb(246,185,52)" fg:x="176" fg:w="2"/><text x="64.7189%" y="239.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="64.4689%" y="213" width="0.7326%" height="15" fill="rgb(252,136,11)" fg:x="176" fg:w="2"/><text x="64.7189%" y="223.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="64.4689%" y="197" width="0.7326%" height="15" fill="rgb(219,138,53)" fg:x="176" fg:w="2"/><text x="64.7189%" y="207.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="64.4689%" y="181" width="0.7326%" height="15" fill="rgb(211,51,23)" fg:x="176" fg:w="2"/><text x="64.7189%" y="191.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="64.4689%" y="165" width="0.7326%" height="15" fill="rgb(247,221,28)" fg:x="176" fg:w="2"/><text x="64.7189%" y="175.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="64.4689%" y="149" width="0.7326%" height="15" fill="rgb(251,222,45)" fg:x="176" fg:w="2"/><text x="64.7189%" y="159.50"></text></g><g><title>[libvulkan.so.1.4.328] (2 samples, 0.73%)</title><rect x="64.4689%" y="133" width="0.7326%" height="15" fill="rgb(217,162,53)" fg:x="176" fg:w="2"/><text x="64.7189%" y="143.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.8352%" y="117" width="0.3663%" height="15" fill="rgb(229,93,14)" fg:x="177" fg:w="1"/><text x="65.0852%" y="127.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.8352%" y="101" width="0.3663%" height="15" fill="rgb(209,67,49)" fg:x="177" fg:w="1"/><text x="65.0852%" y="111.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.8352%" y="85" width="0.3663%" height="15" fill="rgb(213,87,29)" fg:x="177" fg:w="1"/><text x="65.0852%" y="95.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="64.8352%" y="69" width="0.3663%" height="15" fill="rgb(205,151,52)" fg:x="177" fg:w="1"/><text x="65.0852%" y="79.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="64.8352%" y="53" width="0.3663%" height="15" fill="rgb(253,215,39)" fg:x="177" fg:w="1"/><text x="65.0852%" y="63.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="64.8352%" y="37" width="0.3663%" height="15" fill="rgb(221,220,41)" fg:x="177" fg:w="1"/><text x="65.0852%" y="47.50"></text></g><g><title>vkEnumerateInstanceLayerProperties (3 samples, 1.10%)</title><rect x="64.4689%" y="325" width="1.0989%" height="15" fill="rgb(218,133,21)" fg:x="176" fg:w="3"/><text x="64.7189%" y="335.50"></text></g><g><title>[libvulkan.so.1.4.328] (3 samples, 1.10%)</title><rect x="64.4689%" y="309" width="1.0989%" height="15" fill="rgb(221,193,43)" fg:x="176" fg:w="3"/><text x="64.7189%" y="319.50"></text></g><g><title>[libvulkan.so.1.4.328] (3 samples, 1.10%)</title><rect x="64.4689%" y="293" width="1.0989%" height="15" fill="rgb(240,128,52)" fg:x="176" fg:w="3"/><text x="64.7189%" y="303.50"></text></g><g><title>[libvulkan.so.1.4.328] (3 samples, 1.10%)</title><rect x="64.4689%" y="277" width="1.0989%" height="15" fill="rgb(253,114,12)" fg:x="176" fg:w="3"/><text x="64.7189%" y="287.50"></text></g><g><title>getenv (1 samples, 0.37%)</title><rect x="65.2015%" y="261" width="0.3663%" height="15" fill="rgb(215,223,47)" fg:x="178" fg:w="1"/><text x="65.4515%" y="271.50"></text></g><g><title>wayland_backend::sys::client_impl::InnerReadEventsGuard::read_non_dispatch (1 samples, 0.37%)</title><rect x="65.5678%" y="325" width="0.3663%" height="15" fill="rgb(248,225,23)" fg:x="179" fg:w="1"/><text x="65.8178%" y="335.50"></text></g><g><title>wl_display_read_events (1 samples, 0.37%)</title><rect x="65.5678%" y="309" width="0.3663%" height="15" fill="rgb(250,108,0)" fg:x="179" fg:w="1"/><text x="65.8178%" y="319.50"></text></g><g><title>wayland_backend::sys::client_impl::dispatcher_func (1 samples, 0.37%)</title><rect x="65.9341%" y="325" width="0.3663%" height="15" fill="rgb(228,208,7)" fg:x="180" fg:w="1"/><text x="66.1841%" y="335.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="66.3004%" y="309" width="0.3663%" height="15" fill="rgb(244,45,10)" fg:x="181" fg:w="1"/><text x="66.5504%" y="319.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="66.3004%" y="293" width="0.3663%" height="15" fill="rgb(207,125,25)" fg:x="181" fg:w="1"/><text x="66.5504%" y="303.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="66.3004%" y="277" width="0.3663%" height="15" fill="rgb(210,195,18)" fg:x="181" fg:w="1"/><text x="66.5504%" y="287.50"></text></g><g><title>wl_display_roundtrip_queue (1 samples, 0.37%)</title><rect x="66.3004%" y="261" width="0.3663%" height="15" fill="rgb(249,80,12)" fg:x="181" fg:w="1"/><text x="66.5504%" y="271.50"></text></g><g><title>wl_display_dispatch_queue (1 samples, 0.37%)</title><rect x="66.3004%" y="245" width="0.3663%" height="15" fill="rgb(221,65,9)" fg:x="181" fg:w="1"/><text x="66.5504%" y="255.50"></text></g><g><title>wl_display_dispatch_queue_timeout (1 samples, 0.37%)</title><rect x="66.3004%" y="229" width="0.3663%" height="15" fill="rgb(235,49,36)" fg:x="181" fg:w="1"/><text x="66.5504%" y="239.50"></text></g><g><title>wl_display_dispatch_queue_pending (1 samples, 0.37%)</title><rect x="66.3004%" y="213" width="0.3663%" height="15" fill="rgb(225,32,20)" fg:x="181" fg:w="1"/><text x="66.5504%" y="223.50"></text></g><g><title>[libwayland-client.so.0.24.0] (1 samples, 0.37%)</title><rect x="66.3004%" y="197" width="0.3663%" height="15" fill="rgb(215,141,46)" fg:x="181" fg:w="1"/><text x="66.5504%" y="207.50"></text></g><g><title>[libwayland-client.so.0.24.0] (1 samples, 0.37%)</title><rect x="66.3004%" y="181" width="0.3663%" height="15" fill="rgb(250,160,47)" fg:x="181" fg:w="1"/><text x="66.5504%" y="191.50"></text></g><g><title>[libffi.so.8.2.0] (1 samples, 0.37%)</title><rect x="66.3004%" y="165" width="0.3663%" height="15" fill="rgb(216,222,40)" fg:x="181" fg:w="1"/><text x="66.5504%" y="175.50"></text></g><g><title>wl_display_dispatch_queue_pending (1 samples, 0.37%)</title><rect x="66.6667%" y="213" width="0.3663%" height="15" fill="rgb(234,217,39)" fg:x="182" fg:w="1"/><text x="66.9167%" y="223.50"></text></g><g><title>[libwayland-client.so.0.24.0] (1 samples, 0.37%)</title><rect x="66.6667%" y="197" width="0.3663%" height="15" fill="rgb(207,178,40)" fg:x="182" fg:w="1"/><text x="66.9167%" y="207.50"></text></g><g><title>[libwayland-client.so.0.24.0] (1 samples, 0.37%)</title><rect x="66.6667%" y="181" width="0.3663%" height="15" fill="rgb(221,136,13)" fg:x="182" fg:w="1"/><text x="66.9167%" y="191.50"></text></g><g><title>wl_display_roundtrip_queue (2 samples, 0.73%)</title><rect x="66.6667%" y="261" width="0.7326%" height="15" fill="rgb(249,199,10)" fg:x="182" fg:w="2"/><text x="66.9167%" y="271.50"></text></g><g><title>wl_display_dispatch_queue (2 samples, 0.73%)</title><rect x="66.6667%" y="245" width="0.7326%" height="15" fill="rgb(249,222,13)" fg:x="182" fg:w="2"/><text x="66.9167%" y="255.50"></text></g><g><title>wl_display_dispatch_queue_timeout (2 samples, 0.73%)</title><rect x="66.6667%" y="229" width="0.7326%" height="15" fill="rgb(244,185,38)" fg:x="182" fg:w="2"/><text x="66.9167%" y="239.50"></text></g><g><title>wl_display_read_events (1 samples, 0.37%)</title><rect x="67.0330%" y="213" width="0.3663%" height="15" fill="rgb(236,202,9)" fg:x="183" fg:w="1"/><text x="67.2830%" y="223.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="67.0330%" y="197" width="0.3663%" height="15" fill="rgb(250,229,37)" fg:x="183" fg:w="1"/><text x="67.2830%" y="207.50"></text></g><g><title>wgpu_hal::vulkan::adapter::&lt;impl wgpu_hal::Adapter for wgpu_hal::vulkan::Adapter&gt;::surface_capabilities (4 samples, 1.47%)</title><rect x="66.3004%" y="325" width="1.4652%" height="15" fill="rgb(206,174,23)" fg:x="181" fg:w="4"/><text x="66.5504%" y="335.50"></text></g><g><title>ash::prelude::read_into_uninitialized_vector (3 samples, 1.10%)</title><rect x="66.6667%" y="309" width="1.0989%" height="15" fill="rgb(211,33,43)" fg:x="182" fg:w="3"/><text x="66.9167%" y="319.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="66.6667%" y="293" width="1.0989%" height="15" fill="rgb(245,58,50)" fg:x="182" fg:w="3"/><text x="66.9167%" y="303.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="66.6667%" y="277" width="1.0989%" height="15" fill="rgb(244,68,36)" fg:x="182" fg:w="3"/><text x="66.9167%" y="287.50"></text></g><g><title>wl_proxy_marshal_flags (1 samples, 0.37%)</title><rect x="67.3993%" y="261" width="0.3663%" height="15" fill="rgb(232,229,15)" fg:x="184" fg:w="1"/><text x="67.6493%" y="271.50"></text></g><g><title>wl_proxy_marshal_array_flags (1 samples, 0.37%)</title><rect x="67.3993%" y="245" width="0.3663%" height="15" fill="rgb(254,30,23)" fg:x="184" fg:w="1"/><text x="67.6493%" y="255.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="67.3993%" y="229" width="0.3663%" height="15" fill="rgb(235,160,14)" fg:x="184" fg:w="1"/><text x="67.6493%" y="239.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="67.7656%" y="245" width="0.3663%" height="15" fill="rgb(212,155,44)" fg:x="185" fg:w="1"/><text x="68.0156%" y="255.50"></text></g><g><title>ZSTD_decompress (2 samples, 0.73%)</title><rect x="69.2308%" y="117" width="0.7326%" height="15" fill="rgb(226,2,50)" fg:x="189" fg:w="2"/><text x="69.4808%" y="127.50"></text></g><g><title>ZSTD_decompress_usingDDict (2 samples, 0.73%)</title><rect x="69.2308%" y="101" width="0.7326%" height="15" fill="rgb(234,177,6)" fg:x="189" fg:w="2"/><text x="69.4808%" y="111.50"></text></g><g><title>[libzstd.so.1.5.7] (2 samples, 0.73%)</title><rect x="69.2308%" y="85" width="0.7326%" height="15" fill="rgb(217,24,9)" fg:x="189" fg:w="2"/><text x="69.4808%" y="95.50"></text></g><g><title>ZSTD_decompressBlock_internal (2 samples, 0.73%)</title><rect x="69.2308%" y="69" width="0.7326%" height="15" fill="rgb(220,13,46)" fg:x="189" fg:w="2"/><text x="69.4808%" y="79.50"></text></g><g><title>[libzstd.so.1.5.7] (2 samples, 0.73%)</title><rect x="69.2308%" y="53" width="0.7326%" height="15" fill="rgb(239,221,27)" fg:x="189" fg:w="2"/><text x="69.4808%" y="63.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="69.9634%" y="117" width="0.3663%" height="15" fill="rgb(222,198,25)" fg:x="191" fg:w="1"/><text x="70.2134%" y="127.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="69.9634%" y="101" width="0.3663%" height="15" fill="rgb(211,99,13)" fg:x="191" fg:w="1"/><text x="70.2134%" y="111.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="72.1612%" y="53" width="0.3663%" height="15" fill="rgb(232,111,31)" fg:x="197" fg:w="1"/><text x="72.4112%" y="63.50"></text></g><g><title>wgpu_hal::vulkan::adapter::&lt;impl wgpu_hal::vulkan::Adapter&gt;::open_with_callback (15 samples, 5.49%)</title><rect x="67.7656%" y="325" width="5.4945%" height="15" fill="rgb(245,82,37)" fg:x="185" fg:w="15"/><text x="68.0156%" y="335.50">wgpu_ha..</text></g><g><title>vkCreateDevice (15 samples, 5.49%)</title><rect x="67.7656%" y="309" width="5.4945%" height="15" fill="rgb(227,149,46)" fg:x="185" fg:w="15"/><text x="68.0156%" y="319.50">vkCreat..</text></g><g><title>[libvulkan.so.1.4.328] (15 samples, 5.49%)</title><rect x="67.7656%" y="293" width="5.4945%" height="15" fill="rgb(218,36,50)" fg:x="185" fg:w="15"/><text x="68.0156%" y="303.50">[libvul..</text></g><g><title>[libvulkan.so.1.4.328] (15 samples, 5.49%)</title><rect x="67.7656%" y="277" width="5.4945%" height="15" fill="rgb(226,80,48)" fg:x="185" fg:w="15"/><text x="68.0156%" y="287.50">[libvul..</text></g><g><title>[libvulkan.so.1.4.328] (15 samples, 5.49%)</title><rect x="67.7656%" y="261" width="5.4945%" height="15" fill="rgb(238,224,15)" fg:x="185" fg:w="15"/><text x="68.0156%" y="271.50">[libvul..</text></g><g><title>[libvulkan_intel.so] (14 samples, 5.13%)</title><rect x="68.1319%" y="245" width="5.1282%" height="15" fill="rgb(241,136,10)" fg:x="186" fg:w="14"/><text x="68.3819%" y="255.50">[libvu..</text></g><g><title>[libvulkan_intel.so] (14 samples, 5.13%)</title><rect x="68.1319%" y="229" width="5.1282%" height="15" fill="rgb(208,32,45)" fg:x="186" fg:w="14"/><text x="68.3819%" y="239.50">[libvu..</text></g><g><title>[libvulkan_intel.so] (14 samples, 5.13%)</title><rect x="68.1319%" y="213" width="5.1282%" height="15" fill="rgb(207,135,9)" fg:x="186" fg:w="14"/><text x="68.3819%" y="223.50">[libvu..</text></g><g><title>[libvulkan_intel.so] (13 samples, 4.76%)</title><rect x="68.4982%" y="197" width="4.7619%" height="15" fill="rgb(206,86,44)" fg:x="187" fg:w="13"/><text x="68.7482%" y="207.50">[libvu..</text></g><g><title>[libvulkan_intel.so] (13 samples, 4.76%)</title><rect x="68.4982%" y="181" width="4.7619%" height="15" fill="rgb(245,177,15)" fg:x="187" fg:w="13"/><text x="68.7482%" y="191.50">[libvu..</text></g><g><title>[libvulkan_intel.so] (13 samples, 4.76%)</title><rect x="68.4982%" y="165" width="4.7619%" height="15" fill="rgb(206,64,50)" fg:x="187" fg:w="13"/><text x="68.7482%" y="175.50">[libvu..</text></g><g><title>[libvulkan_intel.so] (12 samples, 4.40%)</title><rect x="68.8645%" y="149" width="4.3956%" height="15" fill="rgb(234,36,40)" fg:x="188" fg:w="12"/><text x="69.1145%" y="159.50">[libv..</text></g><g><title>[libvulkan_intel.so] (12 samples, 4.40%)</title><rect x="68.8645%" y="133" width="4.3956%" height="15" fill="rgb(213,64,8)" fg:x="188" fg:w="12"/><text x="69.1145%" y="143.50">[libv..</text></g><g><title>[libvulkan_intel.so] (8 samples, 2.93%)</title><rect x="70.3297%" y="117" width="2.9304%" height="15" fill="rgb(210,75,36)" fg:x="192" fg:w="8"/><text x="70.5797%" y="127.50">[l..</text></g><g><title>[libvulkan_intel.so] (8 samples, 2.93%)</title><rect x="70.3297%" y="101" width="2.9304%" height="15" fill="rgb(229,88,21)" fg:x="192" fg:w="8"/><text x="70.5797%" y="111.50">[l..</text></g><g><title>[libvulkan_intel.so] (6 samples, 2.20%)</title><rect x="71.0623%" y="85" width="2.1978%" height="15" fill="rgb(252,204,47)" fg:x="194" fg:w="6"/><text x="71.3123%" y="95.50">[..</text></g><g><title>[libvulkan_intel.so] (5 samples, 1.83%)</title><rect x="71.4286%" y="69" width="1.8315%" height="15" fill="rgb(208,77,27)" fg:x="195" fg:w="5"/><text x="71.6786%" y="79.50">[..</text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="72.5275%" y="53" width="0.7326%" height="15" fill="rgb(221,76,26)" fg:x="198" fg:w="2"/><text x="72.7775%" y="63.50"></text></g><g><title>wgpu_hal::vulkan::device::&lt;impl gpu_descriptor_types::device::DescriptorDevice&lt;ash::vk::definitions::DescriptorSetLayout,ash::vk::definitions::DescriptorPool,ash::vk::definitions::DescriptorSet&gt; for wgpu_hal::vulkan::DeviceShared&gt;::create_descriptor_pool (56 samples, 20.51%)</title><rect x="73.2601%" y="325" width="20.5128%" height="15" fill="rgb(225,139,18)" fg:x="200" fg:w="56"/><text x="73.5101%" y="335.50">wgpu_hal::vulkan::device::&lt;impl ..</text></g><g><title>[libvulkan_intel.so] (56 samples, 20.51%)</title><rect x="73.2601%" y="309" width="20.5128%" height="15" fill="rgb(230,137,11)" fg:x="200" fg:w="56"/><text x="73.5101%" y="319.50">[libvulkan_intel.so]</text></g><g><title>[libvulkan_intel.so] (56 samples, 20.51%)</title><rect x="73.2601%" y="293" width="20.5128%" height="15" fill="rgb(212,28,1)" fg:x="200" fg:w="56"/><text x="73.5101%" y="303.50">[libvulkan_intel.so]</text></g><g><title>[libc.so.6] (56 samples, 20.51%)</title><rect x="73.2601%" y="277" width="20.5128%" height="15" fill="rgb(248,164,17)" fg:x="200" fg:w="56"/><text x="73.5101%" y="287.50">[libc.so.6]</text></g><g><title>[libvulkan_intel.so] (2 samples, 0.73%)</title><rect x="94.1392%" y="197" width="0.7326%" height="15" fill="rgb(222,171,42)" fg:x="257" fg:w="2"/><text x="94.3892%" y="207.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="94.5055%" y="181" width="0.3663%" height="15" fill="rgb(243,84,45)" fg:x="258" fg:w="1"/><text x="94.7555%" y="191.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="94.5055%" y="165" width="0.3663%" height="15" fill="rgb(252,49,23)" fg:x="258" fg:w="1"/><text x="94.7555%" y="175.50"></text></g><g><title>wgpu_hal::vulkan::device::&lt;impl wgpu_hal::Device for wgpu_hal::vulkan::Device&gt;::create_compute_pipeline (4 samples, 1.47%)</title><rect x="93.7729%" y="325" width="1.4652%" height="15" fill="rgb(215,19,7)" fg:x="256" fg:w="4"/><text x="94.0229%" y="335.50"></text></g><g><title>[libvulkan_intel.so] (4 samples, 1.47%)</title><rect x="93.7729%" y="309" width="1.4652%" height="15" fill="rgb(238,81,41)" fg:x="256" fg:w="4"/><text x="94.0229%" y="319.50"></text></g><g><title>[libvulkan_intel.so] (4 samples, 1.47%)</title><rect x="93.7729%" y="293" width="1.4652%" height="15" fill="rgb(210,199,37)" fg:x="256" fg:w="4"/><text x="94.0229%" y="303.50"></text></g><g><title>[libvulkan_intel.so] (4 samples, 1.47%)</title><rect x="93.7729%" y="277" width="1.4652%" height="15" fill="rgb(244,192,49)" fg:x="256" fg:w="4"/><text x="94.0229%" y="287.50"></text></g><g><title>[libvulkan_intel.so] (4 samples, 1.47%)</title><rect x="93.7729%" y="261" width="1.4652%" height="15" fill="rgb(226,211,11)" fg:x="256" fg:w="4"/><text x="94.0229%" y="271.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="94.1392%" y="245" width="1.0989%" height="15" fill="rgb(236,162,54)" fg:x="257" fg:w="3"/><text x="94.3892%" y="255.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="94.1392%" y="229" width="1.0989%" height="15" fill="rgb(220,229,9)" fg:x="257" fg:w="3"/><text x="94.3892%" y="239.50"></text></g><g><title>[libvulkan_intel.so] (3 samples, 1.10%)</title><rect x="94.1392%" y="213" width="1.0989%" height="15" fill="rgb(250,87,22)" fg:x="257" fg:w="3"/><text x="94.3892%" y="223.50"></text></g><g><title>operator new (1 samples, 0.37%)</title><rect x="94.8718%" y="197" width="0.3663%" height="15" fill="rgb(239,43,17)" fg:x="259" fg:w="1"/><text x="95.1218%" y="207.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="94.8718%" y="181" width="0.3663%" height="15" fill="rgb(231,177,25)" fg:x="259" fg:w="1"/><text x="95.1218%" y="191.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="94.8718%" y="165" width="0.3663%" height="15" fill="rgb(219,179,1)" fg:x="259" fg:w="1"/><text x="95.1218%" y="175.50"></text></g><g><title>wgpu_hal::vulkan::device::&lt;impl wgpu_hal::Device for wgpu_hal::vulkan::Device&gt;::create_render_pipeline (9 samples, 3.30%)</title><rect x="95.2381%" y="325" width="3.2967%" height="15" fill="rgb(238,219,53)" fg:x="260" fg:w="9"/><text x="95.4881%" y="335.50">wgp..</text></g><g><title>[libvulkan_intel.so] (9 samples, 3.30%)</title><rect x="95.2381%" y="309" width="3.2967%" height="15" fill="rgb(232,167,36)" fg:x="260" fg:w="9"/><text x="95.4881%" y="319.50">[li..</text></g><g><title>[libvulkan_intel.so] (9 samples, 3.30%)</title><rect x="95.2381%" y="293" width="3.2967%" height="15" fill="rgb(244,19,51)" fg:x="260" fg:w="9"/><text x="95.4881%" y="303.50">[li..</text></g><g><title>[libvulkan_intel.so] (9 samples, 3.30%)</title><rect x="95.2381%" y="277" width="3.2967%" height="15" fill="rgb(224,6,22)" fg:x="260" fg:w="9"/><text x="95.4881%" y="287.50">[li..</text></g><g><title>[libvulkan_intel.so] (9 samples, 3.30%)</title><rect x="95.2381%" y="261" width="3.2967%" height="15" fill="rgb(224,145,5)" fg:x="260" fg:w="9"/><text x="95.4881%" y="271.50">[li..</text></g><g><title>[libvulkan_intel.so] (9 samples, 3.30%)</title><rect x="95.2381%" y="245" width="3.2967%" height="15" fill="rgb(234,130,49)" fg:x="260" fg:w="9"/><text x="95.4881%" y="255.50">[li..</text></g><g><title>[libvulkan_intel.so] (9 samples, 3.30%)</title><rect x="95.2381%" y="229" width="3.2967%" height="15" fill="rgb(254,6,2)" fg:x="260" fg:w="9"/><text x="95.4881%" y="239.50">[li..</text></g><g><title>[libvulkan_intel.so] (9 samples, 3.30%)</title><rect x="95.2381%" y="213" width="3.2967%" height="15" fill="rgb(208,96,46)" fg:x="260" fg:w="9"/><text x="95.4881%" y="223.50">[li..</text></g><g><title>[libvulkan_intel.so] (7 samples, 2.56%)</title><rect x="95.9707%" y="197" width="2.5641%" height="15" fill="rgb(239,3,39)" fg:x="262" fg:w="7"/><text x="96.2207%" y="207.50">[l..</text></g><g><title>[libvulkan_intel.so] (4 samples, 1.47%)</title><rect x="97.0696%" y="181" width="1.4652%" height="15" fill="rgb(233,210,1)" fg:x="265" fg:w="4"/><text x="97.3196%" y="191.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="98.1685%" y="165" width="0.3663%" height="15" fill="rgb(244,137,37)" fg:x="268" fg:w="1"/><text x="98.4185%" y="175.50"></text></g><g><title>[libvulkan_intel.so] (1 samples, 0.37%)</title><rect x="98.1685%" y="149" width="0.3663%" height="15" fill="rgb(240,136,2)" fg:x="268" fg:w="1"/><text x="98.4185%" y="159.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="98.1685%" y="133" width="0.3663%" height="15" fill="rgb(239,18,37)" fg:x="268" fg:w="1"/><text x="98.4185%" y="143.50"></text></g><g><title>ash::prelude::read_into_uninitialized_vector (1 samples, 0.37%)</title><rect x="98.5348%" y="309" width="0.3663%" height="15" fill="rgb(218,185,22)" fg:x="269" fg:w="1"/><text x="98.7848%" y="319.50"></text></g><g><title>vkEnumerateInstanceLayerProperties (1 samples, 0.37%)</title><rect x="98.5348%" y="293" width="0.3663%" height="15" fill="rgb(225,218,4)" fg:x="269" fg:w="1"/><text x="98.7848%" y="303.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="98.5348%" y="277" width="0.3663%" height="15" fill="rgb(230,182,32)" fg:x="269" fg:w="1"/><text x="98.7848%" y="287.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="98.5348%" y="261" width="0.3663%" height="15" fill="rgb(242,56,43)" fg:x="269" fg:w="1"/><text x="98.7848%" y="271.50"></text></g><g><title>[libvulkan.so.1.4.328] (1 samples, 0.37%)</title><rect x="98.5348%" y="245" width="0.3663%" height="15" fill="rgb(233,99,24)" fg:x="269" fg:w="1"/><text x="98.7848%" y="255.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="98.5348%" y="229" width="0.3663%" height="15" fill="rgb(234,209,42)" fg:x="269" fg:w="1"/><text x="98.7848%" y="239.50"></text></g><g><title>_IO_file_fopen (1 samples, 0.37%)</title><rect x="98.5348%" y="213" width="0.3663%" height="15" fill="rgb(227,7,12)" fg:x="269" fg:w="1"/><text x="98.7848%" y="223.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="98.5348%" y="197" width="0.3663%" height="15" fill="rgb(245,203,43)" fg:x="269" fg:w="1"/><text x="98.7848%" y="207.50"></text></g><g><title>strchr@plt (1 samples, 0.37%)</title><rect x="98.5348%" y="181" width="0.3663%" height="15" fill="rgb(238,205,33)" fg:x="269" fg:w="1"/><text x="98.7848%" y="191.50"></text></g><g><title>wgpu_hal::vulkan::instance::&lt;impl wgpu_hal::vulkan::Instance&gt;::init_with_callback (2 samples, 0.73%)</title><rect x="98.5348%" y="325" width="0.7326%" height="15" fill="rgb(231,56,7)" fg:x="269" fg:w="2"/><text x="98.7848%" y="335.50"></text></g><g><title>vkCreateInstance (1 samples, 0.37%)</title><rect x="98.9011%" y="309" width="0.3663%" height="15" fill="rgb(244,186,29)" fg:x="270" fg:w="1"/><text x="99.1511%" y="319.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="98.9011%" y="293" width="0.3663%" height="15" fill="rgb(234,111,31)" fg:x="270" fg:w="1"/><text x="99.1511%" y="303.50"></text></g><g><title>[libc.so.6] (1 samples, 0.37%)</title><rect x="98.9011%" y="277" width="0.3663%" height="15" fill="rgb(241,149,10)" fg:x="270" fg:w="1"/><text x="99.1511%" y="287.50"></text></g><g><title>winit::platform_impl::linux::common::xkb::Context::set_keymap_from_fd (1 samples, 0.37%)</title><rect x="99.2674%" y="325" width="0.3663%" height="15" fill="rgb(249,206,44)" fg:x="271" fg:w="1"/><text x="99.5174%" y="335.50"></text></g><g><title>xkb_keymap_new_from_buffer (1 samples, 0.37%)</title><rect x="99.2674%" y="309" width="0.3663%" height="15" fill="rgb(251,153,30)" fg:x="271" fg:w="1"/><text x="99.5174%" y="319.50"></text></g><g><title>[libxkbcommon.so.0.12.3] (1 samples, 0.37%)</title><rect x="99.2674%" y="293" width="0.3663%" height="15" fill="rgb(239,152,38)" fg:x="271" fg:w="1"/><text x="99.5174%" y="303.50"></text></g><g><title>[libxkbcommon.so.0.12.3] (1 samples, 0.37%)</title><rect x="99.2674%" y="277" width="0.3663%" height="15" fill="rgb(249,139,47)" fg:x="271" fg:w="1"/><text x="99.5174%" y="287.50"></text></g><g><title>all (273 samples, 100%)</title><rect x="0.0000%" y="357" width="100.0000%" height="15" fill="rgb(244,64,35)" fg:x="0" fg:w="273"/><text x="0.2500%" y="367.50"></text></g><g><title>iris (271 samples, 99.27%)</title><rect x="0.7326%" y="341" width="99.2674%" height="15" fill="rgb(216,46,15)" fg:x="2" fg:w="271"/><text x="0.9826%" y="351.50">iris</text></g><g><title>winit::platform_impl::linux::wayland::window::Window::new (1 samples, 0.37%)</title><rect x="99.6337%" y="325" width="0.3663%" height="15" fill="rgb(250,74,19)" fg:x="272" fg:w="1"/><text x="99.8837%" y="335.50"></text></g><g><title>wayland_client::conn::Connection::display (1 samples, 0.37%)</title><rect x="99.6337%" y="309" width="0.3663%" height="15" fill="rgb(249,42,33)" fg:x="272" fg:w="1"/><text x="99.8837%" y="319.50"></text></g></svg></svg>