diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-01-09 17:30:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-09 17:30:09 +0100 |
commit | fe8cdafbf43419d49a23a3034a198f8ae456cb37 (patch) | |
tree | 188e5aa1078c079afcab72539c9aaf1d2006a72e /modules/gdnative/register_types.cpp | |
parent | 7d46dbb553df10e27937881971e0365f03aa8b06 (diff) | |
parent | 72feccf2057e99d9235efb52cbb9bc4ccc0f0e36 (diff) | |
download | redot-engine-fe8cdafbf43419d49a23a3034a198f8ae456cb37.tar.gz |
Merge pull request #20552 from KidRigger/gsoc-peer
Added interface for GDNative Videodecoder.
Diffstat (limited to 'modules/gdnative/register_types.cpp')
-rw-r--r-- | modules/gdnative/register_types.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/gdnative/register_types.cpp b/modules/gdnative/register_types.cpp index 5833eae274..21343214c1 100644 --- a/modules/gdnative/register_types.cpp +++ b/modules/gdnative/register_types.cpp @@ -38,6 +38,7 @@ #include "nativescript/register_types.h" #include "net/register_types.h" #include "pluginscript/register_types.h" +#include "videodecoder/register_types.h" #include "core/engine.h" #include "core/io/resource_loader.h" @@ -326,6 +327,7 @@ void register_gdnative_types() { register_arvr_types(); register_nativescript_types(); register_pluginscript_types(); + register_videodecoder_types(); // run singletons @@ -378,6 +380,7 @@ void unregister_gdnative_types() { } singleton_gdnatives.clear(); + unregister_videodecoder_types(); unregister_pluginscript_types(); unregister_nativescript_types(); unregister_arvr_types(); |