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-07-01 11:10:36 +0300
committerClément Foucault <foucault.clem@gmail.com>2022-07-01 11:10:58 +0300
commit5b7e7d67a5a4734d691962bf9db6ace7634d0741 (patch)
treee5a2dfb148d2b1d6ca96b03098cb0f7220521c7f
parent4cba209edd398c244de7a85b4a11eb0901a050ce (diff)
Cleanup: GPUCodegen: Remove unused variables
-rw-r--r--source/blender/gpu/intern/gpu_codegen.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_codegen.cc b/source/blender/gpu/intern/gpu_codegen.cc
index 453428cb648..82441c3c89c 100644
--- a/source/blender/gpu/intern/gpu_codegen.cc
+++ b/source/blender/gpu/intern/gpu_codegen.cc
@@ -302,7 +302,7 @@ void GPUCodegen::generate_attribs()
info.vertex_out(iface);
/* Input declaration, loading / assignment to interface and geometry shader passthrough. */
- std::stringstream decl_ss, iface_ss, load_ss;
+ std::stringstream load_ss;
int slot = 15;
LISTBASE_FOREACH (GPUMaterialAttribute *, attr, &graph.attributes) {