blob: 3acf287a08e4d73adf4990cb2f5a8dc6d241df25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// This file is part of the 64k demo project.
// This file previously contained implementations of demo effects and shaders.
// Its content has been split into individual effect files and helper files.
#include "gpu/demo_effects.h"
#include "effects/circle_mask_effect.h"
#include "effects/rotating_cube_effect.h"
// Auto-generated function to populate the timeline
void LoadTimeline(MainSequence& main_seq, WGPUDevice device, WGPUQueue queue,
WGPUTextureFormat format) {
// This function is defined in src/generated/timeline.cc
// and its definition should not be here.
// This file is now essentially a placeholder that includes the main effects
// header.
}
|