summaryrefslogtreecommitdiff
path: root/Userland/Demos/Eyes/EyesWidget.h
AgeCommit message (Collapse)Author
2022-12-07Meta+Userland: Pass Gfx::IntPoint by valueMacDue
This is just two ints or 8 bytes or the size of the reference on x86_64 or AArch64.
2022-08-25Eyes: Add an option to show/hide the window frameMacDue
This works the same as in the Cube demo, and now allows enjoying the eyes without any obstructions :^) The window frame can now be disabled with the -h/--hide-window command-line option, or via toggle in the GUI.
2022-05-07Demos/Eyes: Render eyes antialiasedMacDue
This looks good, and is a good way to test ellipse rendering is working properly.
2022-02-15Demos: Use default constructors/destructorsLenny Maiorani
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
2021-09-08Eyes: Switch to new mouse-tracking methodBen Wiederhake
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-01-12Demos: Move to Userland/Demos/Andreas Kling