Replies: 1 comment
-
This is a sign that your
Process ran out of memory. Make sure you are using
Are you comparing like for like? Same version, command line ags, bitness, same render process lifespan etc. Are you running
Not relevant, remove these.
GPU should be left enabled, make sure your app has an
Remove this, shouldn't be used with Make sure you are using the current stable version. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
We are using CefSharp.Wpf.HwndHost to launch image viewer application which can render high resolution images having size more than 500 MB. If we use viewer to launch multiple images and try to zoom in and zoom out images then after some time it gets white screen.
It works on Chrome but not inside CefSharp.Wpf.HwndHost.
Screen resolution is 4K and 3840x2160. Graphics cards from NVIDIA or AMD.
Debug.log file output :
[0301/161320.236:INFO:CONSOLE(129)] "Uncaught RangeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': Out of memory at ImageData creation",
"You are running the esm-bundler build of vue-i18n. It is recommended to configure your bundler to explicitly replace feature flag globals with boolean literals to get proper tree-shaking in the final bundle.",
Cefsharp setting that we tried :
settings.CefCommandLineArgs.Add("enable-speech-input", "1");
settings.CefCommandLineArgs.Add("allow-universal-access-from-files", "1");
settings.CefCommandLineArgs.Add("allow-file-access-from-files", "1");
settings.CefCommandLineArgs.Add("enable-media-stream", "1");
settings.CefCommandLineArgs.Add("use-fake-ui-for-media-stream", "1");
settings.CefCommandLineArgs.Add("off-screen-rendering-enabled");
settings.CefCommandLineArgs.Add("off-screen-frame-rate", "60");
settings.CefCommandLineArgs.Add("disable-gpu");
settings.CefCommandLineArgs.Add("disable-gpu-compositing");
//settings.CefCommandLineArgs.Add("disable-gpu-vsync");
settings.CefCommandLineArgs.Add("enable-begin-frame-scheduling");
settings.CefCommandLineArgs.Add("enable-media-stream");
Beta Was this translation helpful? Give feedback.
All reactions