Skip to content

Commit 1a63089

Browse files
committed
Fix tracy span names
1 parent 88dc6e2 commit 1a63089

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/render_helpers/snapshot.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ where
4949
) -> Option<&(GlesTexture, Rectangle<i32, Physical>)> {
5050
if target.should_block_out(self.block_out_from) {
5151
self.blocked_out_texture.get_or_init(|| {
52-
let _span = tracy_client::span!("RenderSnapshot::Texture");
52+
let _span = tracy_client::span!("RenderSnapshot::texture");
5353

5454
let elements: Vec<_> = self
5555
.blocked_out_contents
@@ -75,7 +75,7 @@ where
7575
})
7676
} else {
7777
self.texture.get_or_init(|| {
78-
let _span = tracy_client::span!("RenderSnapshot::Texture");
78+
let _span = tracy_client::span!("RenderSnapshot::texture");
7979

8080
let elements: Vec<_> = self
8181
.contents

0 commit comments

Comments
 (0)