-
Notifications
You must be signed in to change notification settings - Fork 268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.SetOption(sciter.SCITER_SET_GFX_LAYER,4) Do not work #99
Comments
That should be called before any window creation. |
if i dont create windows,how i get sciter.Sciter ? |
Yeah, it lacks this at the moment :) |
Can you help me with the field sample code abou this? Thank you very much |
Could you try the latest version? I haven't checked it, but it should work as following: func main() {
sciter.SetOption(sciter.SCITER_SET_GFX_LAYER, sciter.GFX_LAYER_SKIA);
sciter.SetOption(sciter.SCITER_SET_DEBUG_MODE, 1);
sciter.SetOption(sciter.SCITER_SET_UX_THEMING, 1);
w, err := window.New ... |
it not work, because SetOption is a method, belong to srtuct *sciter.Sciter. |
Thank you very much,I have see your commit. 😁 |
So, it works? Great then 👍 |
There have a compile error It can finish compile. but I can't be sure if it's useful. |
Check it now. |
well done! I have try this ,It works very well. Thank you! |
My pleasure :) |
hello , I use
xxx.exe -sciter-fgx=skia
, It can work;but this code is do not work
please help me fix it ,thank you !
The text was updated successfully, but these errors were encountered: