summaryrefslogtreecommitdiff
path: root/src/effects/heptagon_effect.h
blob: fe19839d7adbb1f5e1b85720037274b1782bbdae (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.
// It declares the HeptagonEffect.

#pragma once

#include "gpu/effect.h"

class HeptagonEffect : public Effect {
 public:
  HeptagonEffect(const GpuContext& ctx);
  void render(WGPURenderPassEncoder pass,
              const CommonPostProcessUniforms& uniforms) override;

 private:
  RenderPass pass_;
};