summaryrefslogtreecommitdiff
path: root/src/gpu/effect.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/effect.h')
-rw-r--r--src/gpu/effect.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gpu/effect.h b/src/gpu/effect.h
index bfd5743..8055783 100644
--- a/src/gpu/effect.h
+++ b/src/gpu/effect.h
@@ -54,7 +54,8 @@ class Effect {
int height_ = 720;
// Common resources (initialized automatically in base class)
- UniformBuffer<UniformsSequenceParams> uniforms_buffer_; // Auto-updated in dispatch_render()
+ UniformBuffer<UniformsSequenceParams>
+ uniforms_buffer_; // Auto-updated in dispatch_render()
Sampler sampler_;
Texture dummy_texture_;
TextureView dummy_texture_view_;
@@ -65,7 +66,8 @@ class Effect {
// Helper: Create nearest sampler (call in subclass constructor if needed)
void create_nearest_sampler();
- // Helper: Create dummy texture for scene effects (call in subclass constructor if needed)
+ // Helper: Create dummy texture for scene effects (call in subclass
+ // constructor if needed)
void create_dummy_scene_texture();
private: