mirror of
https://github.com/niri-wm/niri.git
synced 2026-06-23 02:05:33 +07:00
Fix tracy span names
This commit is contained in:
@@ -49,7 +49,7 @@ where
|
|||||||
) -> Option<&(GlesTexture, Rectangle<i32, Physical>)> {
|
) -> Option<&(GlesTexture, Rectangle<i32, Physical>)> {
|
||||||
if target.should_block_out(self.block_out_from) {
|
if target.should_block_out(self.block_out_from) {
|
||||||
self.blocked_out_texture.get_or_init(|| {
|
self.blocked_out_texture.get_or_init(|| {
|
||||||
let _span = tracy_client::span!("RenderSnapshot::Texture");
|
let _span = tracy_client::span!("RenderSnapshot::texture");
|
||||||
|
|
||||||
let elements: Vec<_> = self
|
let elements: Vec<_> = self
|
||||||
.blocked_out_contents
|
.blocked_out_contents
|
||||||
@@ -75,7 +75,7 @@ where
|
|||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
self.texture.get_or_init(|| {
|
self.texture.get_or_init(|| {
|
||||||
let _span = tracy_client::span!("RenderSnapshot::Texture");
|
let _span = tracy_client::span!("RenderSnapshot::texture");
|
||||||
|
|
||||||
let elements: Vec<_> = self
|
let elements: Vec<_> = self
|
||||||
.contents
|
.contents
|
||||||
|
|||||||
Reference in New Issue
Block a user