X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fbuilders%2Fvertexbuilder.h;h=82827cb4e56bed2cb10c47d7562354f8812771a6;hp=5c29734607a9775e123ebef26446293cac6f01e3;hb=86721a55699193e63c76e8a0a7b0ced0416c1cce;hpb=34e3f9d66eb394d8ad69ee66db0cca35b0a15123 diff --git a/source/builders/vertexbuilder.h b/source/builders/vertexbuilder.h index 5c297346..82827cb4 100644 --- a/source/builders/vertexbuilder.h +++ b/source/builders/vertexbuilder.h @@ -89,11 +89,11 @@ public: void tangent(const Vector3 &t) { attrib(get_attribute_semantic(TANGENT3), mtx*Vector4(t.x, t.y, t.z, 0)); } - void binormal(float x, float y, float z) - { binormal(Vector3(x, y, z)); } + DEPRECATED void binormal(float, float, float) + { } - void binormal(const Vector3 &b) - { attrib(get_attribute_semantic(BINORMAL3), mtx*Vector4(b.x, b.y, b.z, 0)); } + DEPRECATED void binormal(const Vector3 &) + { } void texcoord(float s) { texcoord(s, 0, 0, 1); }