You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CEF has support for CefV8Value::CreateArrayBuffer which allows for creating an array buffer using an unmanaged section of memory.
In JavaScript it's likely the method would look something like the following:
cefSharp.createArrayBuffer(size);
There's no way to directly access the data from an existing ArrayBuffer. For an existing ArrayBuffer I suspect we'd have to copy it into our CEF created instance.
I'm looking for user feedback as to how you'd like to use ArrayBuffer with the existing Async JavaScript Binding implementation.
Anyone interested please let me know your usage scenarior.
The text was updated successfully, but these errors were encountered:
CEF has support for CefV8Value::CreateArrayBuffer which allows for creating an array buffer using an unmanaged section of memory.
In
JavaScript
it's likely the method would look something like the following:There's no way to directly access the data from an existing
ArrayBuffer
. For an existingArrayBuffer
I suspect we'd have to copy it into ourCEF
created instance.I'm looking for user feedback as to how you'd like to use
ArrayBuffer
with the existingAsync JavaScript Binding
implementation.Anyone interested please let me know your usage scenarior.
The text was updated successfully, but these errors were encountered: