diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-10-07 15:46:55 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-10-07 15:49:41 +0200 |
commit | bcf4a56c74ebf66ea63f45c56b322bbf72f60d72 (patch) | |
tree | 52f9bd7d5c398748e23131fdfb9ce74dec756898 /modules/theora | |
parent | 8afd2171d1f767c13a18b478b8fc8e6cb9df2157 (diff) |
Replace references to VisualServer in code comments with RenderingServer
VisualServer no longer exists in the `master` branch.
Diffstat (limited to 'modules/theora')
-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; } |