summaryrefslogtreecommitdiff
path: root/src/effects/heptagon_effect.h
blob: ff1be4662e8b87cbf118fd28b025b2ebc1027938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Heptagon effect v2 - scene rendering effect

#pragma once
#include "effects/shaders.h"
#include "gpu/wgsl_effect.h"

struct Heptagon : public WgslEffect {
  Heptagon(const GpuContext& ctx, const std::vector<std::string>& inputs,
           const std::vector<std::string>& outputs, float start_time,
           float end_time)
      : WgslEffect(ctx, inputs, outputs, start_time, end_time,
                   heptagon_shader_wgsl) {
  }
};