David Lannan
David Lannan
It seems there may be a need to extend the idl for this to work. I'll make an attempt to do this, to see if I can solve this.
Ok. I have figured it out.. but Im not sure its an ideal solution (seems quite stable). ``` var customRayCaster = function(from, to, resultptr ) { from = Ammo.wrapPointer(from, Ammo.btVector3);...
No problems - if I can, I will return any decent code.. if I make some :) . Are you interested in new components/objects? Will probably be adding a number...
This was quite a while ago. I ended up trying webkit here: https://github.com/kakutai/nodelj It works quite well, but its a weird implementation with luajit :) .. CEF ended up being...
https://stackoverflow.com/questions/7422427/android-webview-slow Possibly related? ``` if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { // chromium, enable hardware acceleration webView.setLayerType(View.LAYER_TYPE_HARDWARE, null); } else { // older android version, disable hardware acceleration webView.setLayerType(View.LAYER_TYPE_SOFTWARE, null); } ```
Additional note: In my own webkit (webview derivative) applications I use the following for local execution. ``` webkit_settings_set_hardware_acceleration_policy(settings, WEBKIT_HARDWARE_ACCELERATION_POLICY_ALWAYS); webkit_settings_set_enable_offline_web_application_cache(settings, 1); ``` I dont think webView has this in its...
Use: script/build.bat This works for me. If you want to build within VS then you need to use the same build settings. Make sure you have the correct defines set.
I added this to the win32_edge_engine public interface: ``` void set_virtual_hostname( const char *hostname, const char *folderpath) { std::wstring customHost(hostname, hostname+strlen(hostname)); std::wstring dataPath(folderpath, folderpath+strlen(folderpath)); wil::com_ptr m_webview2_3; m_webview->QueryInterface(&m_webview2_3); m_webview2_3->SetVirtualHostNameToFolderMapping(customHost.c_str(), dataPath.c_str(), COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND_ALLOW);...
Thanks @aglitchman (thought I had setup env etc wrong :) ). Will take a look at commit to see if I can move it forward. If I can sort out...
Ok. I think I have instructions to get past the issue and get a build running. Firstl;y need to install scoop. On windows, open a user powershel window (normal one...