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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-03-18 20:51:24 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-03-18 21:02:59 +0300
commit01df4818a6e1d3b93517e48a617310481abd9339 (patch)
treee22bd290eb10f58f2d9b1a850407011dbd0dec7c /intern/cycles/render
parentd76fb8ec67bbc46c2c93e74a28ad24c431d82504 (diff)
Fix Cycles curve UVs wrong after recent changes.
Diffstat (limited to 'intern/cycles/render')
-rw-r--r--intern/cycles/render/curves.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/render/curves.h b/intern/cycles/render/curves.h
index cf75751c58f..9db411bc04b 100644
--- a/intern/cycles/render/curves.h
+++ b/intern/cycles/render/curves.h
@@ -75,7 +75,7 @@ public:
array<int> curve_firstkey;
array<int> curve_keynum;
array<float> curve_length;
- array<float3> curve_uv;
+ array<float2> curve_uv;
array<float3> curve_vcol;
array<float3> curvekey_co;