diff options
| -rw-r--r-- | cmake/DemoSourceLists.cmake | 2 | ||||
| -rw-r--r-- | src/gpu/demo_effects.cc | 4 | ||||
| -rw-r--r-- | src/gpu/post_process_helper.cc | 1 |
3 files changed, 1 insertions, 6 deletions
diff --git a/cmake/DemoSourceLists.cmake b/cmake/DemoSourceLists.cmake index bc943b6..b9c87fa 100644 --- a/cmake/DemoSourceLists.cmake +++ b/cmake/DemoSourceLists.cmake @@ -53,7 +53,7 @@ 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/gpu_headless.cc;src/gpu/demo_effects.cc;${COMMON_GPU_EFFECTS}" + "src/gpu/gpu_headless.cc;${COMMON_GPU_EFFECTS}" # Strip mode: Minimal GPU stubs only "src/gpu/gpu_stub.cc" # Normal mode: Full GPU implementation diff --git a/src/gpu/demo_effects.cc b/src/gpu/demo_effects.cc deleted file mode 100644 index 5114e3a..0000000 --- a/src/gpu/demo_effects.cc +++ /dev/null @@ -1,4 +0,0 @@ -// This file is part of the 64k demo project. -// Central include for all effect implementations. - -#include "gpu/demo_effects.h" diff --git a/src/gpu/post_process_helper.cc b/src/gpu/post_process_helper.cc index 9e7803c..b0121e4 100644 --- a/src/gpu/post_process_helper.cc +++ b/src/gpu/post_process_helper.cc @@ -2,7 +2,6 @@ // It implements helper functions for post-processing effects. #include "post_process_helper.h" -#include "demo_effects.h" #include "gpu/bind_group_builder.h" #include "gpu/gpu.h" #include "gpu/pipeline_builder.h" |
