Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Foucault <foucault.clem@gmail.com>2022-05-05 12:55:13 +0300
committerClément Foucault <foucault.clem@gmail.com>2022-05-05 12:55:13 +0300
commit94533ca4b8b880ff6d2e3db1a238add2b0ee31e0 (patch)
treeba7c0f916e1e51917517011fc6f060c93a9bb1bc /source/blender/draw/engines/eevee_next/eevee_pipeline.hh
parent3505d948c65599cd58b441f66e57028569012e14 (diff)
Cleanup: EEVEE: Fix clang-tidy warnings and unused var warning
Diffstat (limited to 'source/blender/draw/engines/eevee_next/eevee_pipeline.hh')
-rw-r--r--source/blender/draw/engines/eevee_next/eevee_pipeline.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/draw/engines/eevee_next/eevee_pipeline.hh b/source/blender/draw/engines/eevee_next/eevee_pipeline.hh
index 14eac812e55..a5a6847f62e 100644
--- a/source/blender/draw/engines/eevee_next/eevee_pipeline.hh
+++ b/source/blender/draw/engines/eevee_next/eevee_pipeline.hh
@@ -37,7 +37,7 @@ class WorldPipeline {
WorldPipeline(Instance &inst) : inst_(inst){};
void sync(GPUMaterial *gpumat);
- void render(void);
+ void render();
};
/** \} */
@@ -63,7 +63,7 @@ class ForwardPipeline {
public:
ForwardPipeline(Instance &inst) : inst_(inst){};
- void sync(void);
+ void sync();
DRWShadingGroup *material_add(::Material *blender_mat, GPUMaterial *gpumat)
{