X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fbuilders%2Fvertexarraybuilder.cpp;h=14d03b98136773543739e14ef8febe191c10afde;hp=3afe9a40e2bf22c48869207ef9b73235c9dd784b;hb=HEAD;hpb=d493917dbc215cd6ba3f8773a52a289d9f14380d diff --git a/source/builders/vertexarraybuilder.cpp b/source/builders/vertexarraybuilder.cpp index 3afe9a40..14d03b98 100644 --- a/source/builders/vertexarraybuilder.cpp +++ b/source/builders/vertexarraybuilder.cpp @@ -1,3 +1,4 @@ +#include #include "vertexarray.h" #include "vertexarraybuilder.h" @@ -13,43 +14,43 @@ VertexArrayBuilder::VertexArrayBuilder(VertexArray &a): void VertexArrayBuilder::vertex_(const Vector4 &vtx) { char *ptr = array.append(); - const VertexFormat &format = array.get_format(); - for(const UInt16 *a=format.begin(); a!=format.end(); ++a) + for(VertexAttribute a: array.get_format()) { - unsigned sem = get_attribute_semantic(*a); - DataType type = get_attribute_source_type(*a); - unsigned cc = get_attribute_component_count(*a); - - if(sem(ptr, value, cc); + store_attribute(ptr, value, !integer, cc); else if(type==BYTE) - store_attribute(ptr, value, cc); + store_attribute(ptr, value, !integer, cc); else if(type==UNSIGNED_SHORT) - store_attribute(ptr, value, cc); + store_attribute(ptr, value, !integer, cc); else if(type==SHORT) - store_attribute(ptr, value, cc); + store_attribute(ptr, value, !integer, cc); else if(type==UNSIGNED_INT) - store_attribute(ptr, value, cc); + store_attribute(ptr, value, !integer, cc); else if(type==INT) - store_attribute(ptr, value, cc); + store_attribute(ptr, value, !integer, cc); else if(type==FLOAT) - store_attribute(ptr, value, cc); + store_attribute(ptr, value, false, cc); } - ptr += get_attribute_size(*a); + ptr += get_attribute_size(a); } } template -void VertexArrayBuilder::store_attribute(char *ptr, const Vector4 &value, unsigned count) +void VertexArrayBuilder::store_attribute(char *ptr, const Vector4 &value, bool normalize, unsigned count) { T *tptr = reinterpret_cast(ptr); for(unsigned i=0; i::is_integer) + if(!numeric_limits::is_integer || !normalize) *tptr++ = value[i]; else if(numeric_limits::is_signed) *tptr++ = round(min(max(value[i], -1.0f), 1.0f)*numeric_limits::max());