diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-10-07 17:06:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-07 17:06:27 +0200 |
commit | f323d25dd3ba2be5ff491d34df2fbcc3b5ab1efc (patch) | |
tree | fa6b5057d65c9ed60edda33e2ef01cb430da5ec1 /modules/theora/video_stream_theora.cpp | |
parent | dcaf65f79c696396724719a490a33ef78ec8d68e (diff) | |
parent | bcf4a56c74ebf66ea63f45c56b322bbf72f60d72 (diff) | |
download | redot-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.cpp | 2 |
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; } |