summaryrefslogtreecommitdiff
path: root/glsize.hpp
diff options
context:
space:
mode:
authorJosé Fonseca <jose.r.fonseca@gmail.com>2011-05-10 10:38:19 +0100
committerJosé Fonseca <jose.r.fonseca@gmail.com>2011-06-28 17:20:34 +0100
commit1601c410527dc54ac11018caaa9d330526ca7efe (patch)
tree5be00942f50064490baf663cebfa01b97119127c /glsize.hpp
parent4a617cd54c6f668215f2b3d92115682c6a8af732 (diff)
Distinguish different glVertexAttribPointer* functions (WIP).
Diffstat (limited to 'glsize.hpp')
-rw-r--r--glsize.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/glsize.hpp b/glsize.hpp
index a5a9857..8e1846a 100644
--- a/glsize.hpp
+++ b/glsize.hpp
@@ -87,6 +87,8 @@ __glArrayPointer_size(GLint size, GLenum type, GLsizei stride, GLsizei maxIndex)
#define __glFogCoordPointer_size(type, stride, maxIndex) __glArrayPointer_size(1, type, stride, maxIndex)
#define __glSecondaryColorPointer_size(size, type, stride, maxIndex) __glArrayPointer_size(size, type, stride, maxIndex)
#define __glVertexAttribPointer_size(size, type, normalized, stride, maxIndex) __glArrayPointer_size(size, type, stride, maxIndex)
+#define __glVertexAttribPointerARB_size(size, type, normalized, stride, maxIndex) __glArrayPointer_size(size, type, stride, maxIndex)
+#define __glVertexAttribPointerNV_size(size, type, stride, maxIndex) __glArrayPointer_size(size, type, stride, maxIndex)
static inline GLuint
__glDrawArrays_maxindex(GLint first, GLsizei count)