summaryrefslogtreecommitdiffstats
path: root/servers/xr/xr_interface.h
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-10-29 19:25:36 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-10-29 19:25:36 -0500
commitb7a0971ad2d168e31d9a3ba93bbc59865bb1c337 (patch)
tree1d67cb0af1f6c2c8f2b054ceef7f9f764b6ff35d /servers/xr/xr_interface.h
parent64b68192cc8a13e7ed87a8f64b2d5dd6f15e4056 (diff)
parent25b28aa8877faafde9f1770f4afccab95d681d43 (diff)
downloadredot-engine-b7a0971ad2d168e31d9a3ba93bbc59865bb1c337.tar.gz
Merge pull request #97934 from adamscott/give-AThousandShips-a-break
[Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
Diffstat (limited to 'servers/xr/xr_interface.h')
-rw-r--r--servers/xr/xr_interface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/xr/xr_interface.h b/servers/xr/xr_interface.h
index 55495731c5..abd5476fc9 100644
--- a/servers/xr/xr_interface.h
+++ b/servers/xr/xr_interface.h
@@ -138,7 +138,7 @@ public:
virtual RID get_depth_texture(); /* obtain depth output texture (if applicable, used for reprojection) */
virtual RID get_velocity_texture(); /* obtain velocity output texture (if applicable, used for spacewarp) */
virtual void pre_render() {}
- virtual bool pre_draw_viewport(RID p_render_target) { return true; }; /* inform XR interface we are about to start our viewport draw process */
+ virtual bool pre_draw_viewport(RID p_render_target) { return true; } /* inform XR interface we are about to start our viewport draw process */
virtual Vector<BlitToScreen> post_draw_viewport(RID p_render_target, const Rect2 &p_screen_rect) = 0; /* inform XR interface we finished our viewport draw process */
virtual void end_frame() {}