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:
authorJean First <robbott>2019-09-07 01:00:48 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-07 01:01:48 +0300
commitd288776cef7d69970f050800d3b230349fd08865 (patch)
treeea4aabecf537e5fce238d42e10ba810d826af5ff /source/blender/gpu
parent87d0033ea9feb4ff85ef1249ae3b57aaa3c3d540 (diff)
Fix T68843: wireframe node in Eevee fails on macOS
Differential Revision: https://developer.blender.org/D5712
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/intern/gpu_codegen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_codegen.c b/source/blender/gpu/intern/gpu_codegen.c
index d655a43561e..5a2b2b254a7 100644
--- a/source/blender/gpu/intern/gpu_codegen.c
+++ b/source/blender/gpu/intern/gpu_codegen.c
@@ -1307,7 +1307,7 @@ static char *code_generate_geometry(ListBase *nodes, const char *geom_code, cons
BLI_dynstr_append(ds, "\tgl_Position = gl_in[2].gl_Position;\n");
BLI_dynstr_append(ds, "\tpass_attr(2);\n");
BLI_dynstr_append(ds, "\tEmitVertex();\n");
- BLI_dynstr_append(ds, "};\n");
+ BLI_dynstr_append(ds, "}\n");
}
}
else {