serenity/Userland/Demos
Lenny Maiorani f912a48315 Userland: Change static const variables to static constexpr
`static const` variables can be computed and initialized at run-time
during initialization or the first time a function is called. Change
them to `static constexpr` to ensure they are computed at
compile-time.

This allows some removal of `strlen` because the length of the
`StringView` can be used which is pre-computed at compile-time.
2022-03-18 19:58:57 +01:00
..
CatDog Demos/CatDog: Show different messages depending on state 2022-03-02 18:10:02 +01:00
Cube Demos: Use default constructors/destructors 2022-02-15 23:00:03 +02:00
Eyes Eyes: Add 'Contents' action to help menu 2022-03-18 01:10:16 +01:00
Fire Userland: Change static const variables to static constexpr 2022-03-18 19:58:57 +01:00
LibGfxDemo Demos: Use default constructors/destructors 2022-02-15 23:00:03 +02:00
LibGfxScaleDemo Demos: Use default constructors/destructors 2022-02-15 23:00:03 +02:00
Mandelbrot Mandelbrot: Add Help menu with standard About action 2022-03-08 18:34:14 +01:00
ModelGallery Userland: Run gml-format 2022-02-13 02:36:35 +02:00
Mouse Userland: Rename WindowServerConnection=>ConnectionToWindowServer 2022-02-25 22:35:12 +01:00
Screensaver Demos: Use default constructors/destructors 2022-02-15 23:00:03 +02:00
Starfield Demos: Use default constructors/destructors 2022-02-15 23:00:03 +02:00
VirGLDemo Userland: Change static const variables to static constexpr 2022-03-18 19:58:57 +01:00
WidgetGallery Userland: Rename WindowServerConnection=>ConnectionToWindowServer 2022-02-25 22:35:12 +01:00
CMakeLists.txt Demos: Create demo for VirGL gpu device 2022-03-09 14:58:48 +03:30