Render to offscreen image and window resizing

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-12-02 21:26:53 +02:00
parent 08cb595ed2
commit 94eb26d9bc
8 changed files with 321 additions and 34 deletions

View File

@@ -1,6 +1,10 @@
project('vr-compositor', 'cpp',
version: '0.1',
default_options: ['cpp_std=c++23']
default_options: [
'cpp_std=c++23',
'warning_level=everything',
'werror=true',
]
)
cc = meson.get_compiler('cpp')
@@ -25,16 +29,14 @@ vkbootstrap_dep = cc.find_library(
)
add_project_arguments(
'-Wall',
'-Wextra',
'-Wpedantic',
'-Werror',
language : ['c', 'cpp']
)
exe = executable('vr-compositor',
[
'src/main.cpp',
'src/Impls.cpp',
'src/Util.cpp',
'src/Logger.cpp',
'src/Application.cpp',