diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/gpu/headless_gpu.cc | 6 | ||||
| -rw-r--r-- | src/gpu/stub_gpu.cc | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/gpu/headless_gpu.cc b/src/gpu/headless_gpu.cc index 1a649d3..1eedc66 100644 --- a/src/gpu/headless_gpu.cc +++ b/src/gpu/headless_gpu.cc @@ -47,11 +47,13 @@ void gpu_init(PlatformState* platform_state) { } } -void gpu_draw(float audio_peak, float aspect_ratio, float time, float beat) { +void gpu_draw(float audio_peak, float aspect_ratio, float time, + float beat_time, float beat_phase) { (void)audio_peak; (void)aspect_ratio; (void)time; - (void)beat; + (void)beat_time; + (void)beat_phase; } void gpu_resize(int width, int height) { diff --git a/src/gpu/stub_gpu.cc b/src/gpu/stub_gpu.cc index 0b4185c..8d69996 100644 --- a/src/gpu/stub_gpu.cc +++ b/src/gpu/stub_gpu.cc @@ -41,11 +41,13 @@ void gpu_init(PlatformState* platform_state) { (void)platform_state; } -void gpu_draw(float audio_peak, float aspect_ratio, float time, float beat) { +void gpu_draw(float audio_peak, float aspect_ratio, float time, + float beat_time, float beat_phase) { (void)audio_peak; (void)aspect_ratio; (void)time; - (void)beat; + (void)beat_time; + (void)beat_phase; } void gpu_resize(int width, int height) { |
