X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fcore%2Fvertexformat.cpp;fp=source%2Fcore%2Fvertexformat.cpp;h=3db7542f4da68ab240ed17d7773299908dbcc7d9;hp=ff043f7d0466bef73b08e216836617ef8fe9200f;hb=8a8cce8ef4ee28b3572a72958b8b407759f9f826;hpb=c8e122dc5c859c72ff98840477adbd263fe914c3 diff --git a/source/core/vertexformat.cpp b/source/core/vertexformat.cpp index ff043f7d..3db7542f 100644 --- a/source/core/vertexformat.cpp +++ b/source/core/vertexformat.cpp @@ -188,7 +188,8 @@ void operator>>(const LexicalConverter &conv, VertexAttribute &a) convert_attribute(str, "GROUP", 1, 4, a, GROUP1) || convert_attribute(str, "WEIGHT", 1, 4, a, WEIGHT1) || convert_attribute(str, "TEXCOORD", 1, 4, a, TEXCOORD1) || - convert_attribute(str, "GENERIC", 1, 4, a, GENERIC1)) + convert_attribute(str, "GENERIC", 1, 4, a, GENERIC1) || + convert_attribute(str, "PADDING", 1, 4, a, PADDING1)) return; } catch(...)