File tree Expand file tree Collapse file tree
re_space_view_spatial/src/parts Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -220,6 +220,7 @@ pub struct LoadedPoints {
220220}
221221
222222impl LoadedPoints {
223+ #[ inline]
223224 pub fn load (
224225 arch_view : & ArchetypeView < Points3D > ,
225226 ent_path : & EntityPath ,
@@ -252,6 +253,7 @@ impl LoadedPoints {
252253 } )
253254 }
254255
256+ #[ inline]
255257 pub fn load_positions (
256258 arch_view : & ArchetypeView < Points3D > ,
257259 ) -> DeserializationResult < Vec < glam:: Vec3 > > {
@@ -262,6 +264,7 @@ impl LoadedPoints {
262264 } )
263265 }
264266
267+ #[ inline]
265268 pub fn load_radii (
266269 arch_view : & ArchetypeView < Points3D > ,
267270 ent_path : & EntityPath ,
@@ -273,6 +276,7 @@ impl LoadedPoints {
273276 } )
274277 }
275278
279+ #[ inline]
276280 pub fn load_colors (
277281 arch_view : & ArchetypeView < Points3D > ,
278282 ent_path : & EntityPath ,
@@ -285,6 +289,7 @@ impl LoadedPoints {
285289 } )
286290 }
287291
292+ #[ inline]
288293 pub fn load_picking_ids ( arch_view : & ArchetypeView < Points3D > ) -> Vec < PickingLayerInstanceId > {
289294 re_tracing:: profile_function!( ) ;
290295 let iterator = arch_view
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ pub struct Annotations {
2121}
2222
2323impl Annotations {
24+ #[ inline]
2425 pub fn missing ( ) -> Self {
2526 Self {
2627 row_id : MISSING_ROW_ID ,
You can’t perform that action at this time.
0 commit comments