X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fcore%2Fvertexsetup.h;h=3b18006af04918661150d285ea6563664db51b32;hp=51183af52b64a1e3b9d521511a255215cb626955;hb=d40673bd28c4b4524d3642b949d9d109dc6f9f24;hpb=11266e8093e56524a68de1d0a08d275de95c56a0 diff --git a/source/core/vertexsetup.h b/source/core/vertexsetup.h index 51183af5..3b18006a 100644 --- a/source/core/vertexsetup.h +++ b/source/core/vertexsetup.h @@ -20,9 +20,7 @@ private: { VERTEX_ARRAY = 1, INSTANCE_ARRAY = 2, - INDEX_BUFFER = 4, - UNUSED_ATTRIBS = 8, - ATTRIB_SHIFT = 4 + INDEX_BUFFER = 4 }; unsigned id; @@ -37,18 +35,18 @@ public: VertexSetup(); ~VertexSetup(); + void set_format(const VertexFormat &); + void set_format_instanced(const VertexFormat &, const VertexFormat &); + void set_vertex_array(const VertexArray &); - void set_instance_array(const VertexArray *); + void set_instance_array(const VertexArray &); void set_index_buffer(const Buffer &); - void refresh(); const VertexArray *get_vertex_array() const { return vertex_array; } const VertexArray *get_instance_array() const { return inst_array; } const Buffer *get_index_buffer() const { return index_buffer; } private: - static bool verify_array(const VertexArray &); - static unsigned get_attribs(const VertexFormat &); - static unsigned get_update_mask(unsigned, const VertexFormat &, const VertexArray &); + static bool verify_format(const VertexFormat &); void update(unsigned) const; void update_vertex_array(const VertexArray &, unsigned, unsigned, bool) const;