* Backend: remove RenderTargetFlag and refactor depth/stencil state setup
* Fix Z-test and Z-write being enabled by default for main queue
* GL: fix framebuffer attachment not being cleared
* Use dirtyFlags for RenderTarget update
---------
Co-authored-by: halx99 <halx99@live.com>
* linux webview start
* Linux UIWebView phase1
* update setup for linux uiwebview
* add depends for arch
* removed unnecessary XReparent call
* Fixed some XWayland issues
* finalizing linux webview implementation
* enabled webview tests on linux
* updated copyright link
* removed some unnecessary comments
* some formatting
* some more formatting
* fixed a test typo
* removed some unnecessary codes
* removed some unnecessary comments
* Only pause GLSurfaceView if activity is being stopped, and not if it just loses focus
* Add copyright notice
* Ensure foreground and background events are not sent out on initial app start
Remove work-around in nativeOnResume to avoid calling applicationWillEnterForeground twice since it is no longer required
Remove redundant setRenderMode calls in AxmolGLSurfaceView
* Add copyright notices
* Add Sprite and TextureCache way to use image from Data
* add Sprite cpp tests
* Apply suggestions from code review
---------
Co-authored-by: halx99 <halx99@live.com>
* fixed UIWebViewImpl-win32 warning C4244 while changing LPWSTR to string
* use direct `socket_native_type`
* directly use HMENU instead of int
* not sure why it wasn't auto converted but msvc spitted warnings
* we're moving it, it doesn't need to be constant, using ntcvt::from_chars
* ignore it to reduce one more warning
* add some missing `noexcept`
* reverted some const removal didn't realize it was used for rvalues
* Child stencils are now applied correctly to the clipping node
Fix incorrect reference count for original program states stored in collection
* Add test for unique child stencils
* Fix comment
* [Android] Add support for factoring in device rounded corner inset values for Android API 31 or higher
* Check for null pointer return values from Java.
* Retain _debugDrawNode in Label
This fixes a memory corruption bug and resulting crash in the TextFieldTTF (and likely other TextField classes) where the _debugDrawNode wasn't being retained, and the label isn't added to the scene for a TextField, but is maintained by the TextField. This caused _debugDrawNode in the Label class to get cleaned up, even though Label still thought it had a valid reference to a DrawNode.
* Added missing Axmol copyright
* Changed Label to use visit for _debugDrawNode
* Fix FileUtils::getFileSize() not returning -1 when file is not found
* Fix FileUtils::fullPathForDirectory() not appending a trailing slash
* Fix `not` and `and` keyword usage
* Fix FileUtils::getDefaultResourceRootPath() returning nothing on macOS
* Fix FileUtils::isFileExist() returning true for directories on macOS