1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Replace references to VisualServer in code comments with RenderingServer

VisualServer no longer exists in the `master` branch.
This commit is contained in:
Hugo Locurcio
2021-10-07 15:46:55 +02:00
parent 8afd2171d1
commit bcf4a56c74
13 changed files with 18 additions and 18 deletions

View File

@@ -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;
}