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/webm/video_stream_webm.cpp | |
parent | 8afd2171d1f767c13a18b478b8fc8e6cb9df2157 (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.cpp | 2 |
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; } } |