mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
[HTML5] EditorRunNative works with GDNative.
This "breaks" our loading bar logic (libraries are not counted). Fixing it is non trivial and probably deserves investigating a different strategy.
This commit is contained in:
parent
4d1ebaad0f
commit
4ad95cc039
6 changed files with 65 additions and 19 deletions
|
@ -42,6 +42,7 @@
|
|||
#include "servers/visual/visual_server_wrap_mt.h"
|
||||
#endif
|
||||
|
||||
#include <dlfcn.h>
|
||||
#include <emscripten.h>
|
||||
#include <png.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -1206,6 +1207,13 @@ bool OS_JavaScript::is_userfs_persistent() const {
|
|||
return idb_available;
|
||||
}
|
||||
|
||||
Error OS_JavaScript::open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path) {
|
||||
String path = p_path.get_file();
|
||||
p_library_handle = dlopen(path.utf8().get_data(), RTLD_NOW);
|
||||
ERR_FAIL_COND_V_MSG(!p_library_handle, ERR_CANT_OPEN, "Can't open dynamic library: " + p_path + ". Error: " + dlerror());
|
||||
return OK;
|
||||
}
|
||||
|
||||
OS_JavaScript *OS_JavaScript::get_singleton() {
|
||||
|
||||
return static_cast<OS_JavaScript *>(OS::get_singleton());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue