diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-07-01 15:17:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-01 15:17:33 +0200 |
commit | ad8a2b3d527f821d1a0b061811661d49d0920967 (patch) | |
tree | 500453dd29cce8ceb39007ac5a5902f0504c1332 /modules/gdnative | |
parent | 9f30638d4bbc5a30c6f4f5cff99910bf8e19c2e3 (diff) | |
parent | 37776b28677ab4c4cb61047df1fe9816e9b63642 (diff) |
Merge pull request #50040 from reduz/fix-renderingserver-bindings
Clean up RenderingServer and its bindings
Diffstat (limited to 'modules/gdnative')
-rw-r--r-- | modules/gdnative/videodecoder/video_stream_gdnative.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/videodecoder/video_stream_gdnative.cpp b/modules/gdnative/videodecoder/video_stream_gdnative.cpp index 26b044c0ef..4c9bfb395d 100644 --- a/modules/gdnative/videodecoder/video_stream_gdnative.cpp +++ b/modules/gdnative/videodecoder/video_stream_gdnative.cpp @@ -185,7 +185,7 @@ void VideoStreamPlaybackGDNative::update_texture() { Ref<Image> img = memnew(Image(texture_size.width, texture_size.height, 0, Image::FORMAT_RGBA8, *pba)); - texture->update(img, true); + texture->update(img); } // ctor and dtor |