summaryrefslogtreecommitdiff
path: root/modules/webm/video_stream_webm.cpp
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2021-10-07 15:46:55 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2021-10-07 15:49:41 +0200
commitbcf4a56c74ebf66ea63f45c56b322bbf72f60d72 (patch)
tree52f9bd7d5c398748e23131fdfb9ce74dec756898 /modules/webm/video_stream_webm.cpp
parent8afd2171d1f767c13a18b478b8fc8e6cb9df2157 (diff)
Replace references to VisualServer in code comments with RenderingServer
VisualServer no longer exists in the `master` branch.
Diffstat (limited to 'modules/webm/video_stream_webm.cpp')
-rw-r--r--modules/webm/video_stream_webm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/webm/video_stream_webm.cpp b/modules/webm/video_stream_webm.cpp
index 12e0f5bd25..187a27b6c2 100644
--- a/modules/webm/video_stream_webm.cpp
+++ b/modules/webm/video_stream_webm.cpp
@@ -311,7 +311,7 @@ void VideoStreamPlaybackWebm::update(float p_delta) {
if (converted) {
Ref<Image> img = memnew(Image(image.w, image.h, 0, Image::FORMAT_RGBA8, frame_data));
- texture->update(img); //Zero copy send to visual server
+ texture->update(img); //Zero copy send to rendering server
video_frame_done = true;
}
}