summaryrefslogtreecommitdiffstats
path: root/modules/theora/video_stream_theora.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-10-07 17:06:27 +0200
committerGitHub <noreply@github.com>2021-10-07 17:06:27 +0200
commitf323d25dd3ba2be5ff491d34df2fbcc3b5ab1efc (patch)
treefa6b5057d65c9ed60edda33e2ef01cb430da5ec1 /modules/theora/video_stream_theora.cpp
parentdcaf65f79c696396724719a490a33ef78ec8d68e (diff)
parentbcf4a56c74ebf66ea63f45c56b322bbf72f60d72 (diff)
downloadredot-engine-f323d25dd3ba2be5ff491d34df2fbcc3b5ab1efc.tar.gz
Merge pull request #53525 from Calinou/comments-replace-visual-server
Replace references to VisualServer in code comments with RenderingServer
Diffstat (limited to 'modules/theora/video_stream_theora.cpp')
-rw-r--r--modules/theora/video_stream_theora.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/theora/video_stream_theora.cpp b/modules/theora/video_stream_theora.cpp
index 2f6faec8ec..8e80dfffca 100644
--- a/modules/theora/video_stream_theora.cpp
+++ b/modules/theora/video_stream_theora.cpp
@@ -108,7 +108,7 @@ void VideoStreamPlaybackTheora::video_write() {
Ref<Image> img = memnew(Image(size.x, size.y, 0, Image::FORMAT_RGBA8, frame_data)); //zero copy image creation
- texture->update(img); //zero copy send to visual server
+ texture->update(img); //zero copy send to rendering server
frames_pending = 1;
}