diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-17 09:08:25 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-17 09:08:25 +0100 |
| commit | cd5c2ee728fcfc5c0bf81ba51899fa7369d0d1e2 (patch) | |
| tree | 985785e7598dd767d635e21304797baf53573fae /cmake | |
| parent | 001939ca8e2c582650d3cd77d0cd0eabffc50ed2 (diff) | |
feat: Rename GPU stub and headless files and update references
Diffstat (limited to 'cmake')
| -rw-r--r-- | cmake/DemoCommon.cmake | 4 | ||||
| -rw-r--r-- | cmake/DemoSourceLists.cmake | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cmake/DemoCommon.cmake b/cmake/DemoCommon.cmake index 401ea05..5f41786 100644 --- a/cmake/DemoCommon.cmake +++ b/cmake/DemoCommon.cmake @@ -14,8 +14,8 @@ # # Usage: # demo_set_conditional_sources(GPU_SOURCES -# "src/gpu/headless_gpu.cc;src/gpu/effect.cc" -# "src/gpu/stub_gpu.cc" +# "src/gpu/gpu_headless.cc;src/gpu/effect.cc" +# "src/gpu/gpu_stub.cc" # "src/gpu/gpu.cc;src/gpu/effect.cc" # ) function(demo_set_conditional_sources VAR HEADLESS_LIST STRIP_LIST NORMAL_LIST) diff --git a/cmake/DemoSourceLists.cmake b/cmake/DemoSourceLists.cmake index 0f5ac8c..b7bc843 100644 --- a/cmake/DemoSourceLists.cmake +++ b/cmake/DemoSourceLists.cmake @@ -52,9 +52,9 @@ set(COMMON_GPU_EFFECTS # GPU sources (conditional: HEADLESS / STRIP_EXTERNAL / NORMAL) demo_set_conditional_sources(GPU_SOURCES # Headless mode: Functional stubs (timeline/audio work) - "src/gpu/headless_gpu.cc;src/gpu/demo_effects.cc;${COMMON_GPU_EFFECTS}" + "src/gpu/gpu_headless.cc;src/gpu/demo_effects.cc;${COMMON_GPU_EFFECTS}" # Strip mode: Minimal GPU stubs only - "src/gpu/stub_gpu.cc" + "src/gpu/gpu_stub.cc" # Normal mode: Full GPU implementation "src/gpu/gpu.cc;${COMMON_GPU_EFFECTS}" ) |
