ladybird/Userland/Demos/VirGLDemo
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
..
CMakeLists.txt Demos: Create demo for VirGL gpu device 2022-03-09 14:58:48 +03:30
CommandBufferBuilder.cpp Userland: Change static const variables to static constexpr 2022-03-18 19:58:57 +01:00
CommandBufferBuilder.h Userland: Change static const variables to static constexpr 2022-03-18 19:58:57 +01:00
VirGLDemo.cpp Userland: Change static const variables to static constexpr 2022-03-18 19:58:57 +01:00
VirGLProtocol.h Demos: Create demo for VirGL gpu device 2022-03-09 14:58:48 +03:30
Widget.cpp Demos: Create demo for VirGL gpu device 2022-03-09 14:58:48 +03:30
Widget.h Demos: Create demo for VirGL gpu device 2022-03-09 14:58:48 +03:30