More overloads for various methods; mainly ARRAY additions.
svn path=/trunk/tsunami-bindings/; revision=24889
This commit is contained in:
Родитель
8a9f8a8e78
Коммит
e7582b9904
|
@ -945,6 +945,7 @@ GL_VERSION_1_1
|
|||
void glTexCoord4s (GLshort s, GLshort t, GLshort r, GLshort q)
|
||||
void glTexCoord4sv (const GLshort *v)
|
||||
void glTexCoordPointer (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
|
||||
void glTexCoordPointer (GLint size, GLenum type, GLsizei stride, ARRAY pointer)
|
||||
void glTexEnvf (GLenum target, GLenum pname, GLfloat param)
|
||||
void glTexEnvfv (GLenum target, GLenum pname, const GLfloat *params)
|
||||
void glTexEnvfv (GLenum target, GLenum pname, const GLfloat [] params)
|
||||
|
|
|
@ -45,6 +45,7 @@ GL_VERSION_1_4
|
|||
void glFogCoordd (GLdouble coord)
|
||||
void glFogCoorddv (const GLdouble *coord)
|
||||
void glFogCoordPointer (GLenum type, GLsizei stride, const GLvoid *pointer)
|
||||
void glFogCoordPointer (GLenum type, GLsizei stride, ARRAY pointer)
|
||||
void glMultiDrawArrays (GLenum mode, GLint *first, GLsizei *count, GLsizei primcount)
|
||||
void glMultiDrawElements (GLenum mode, GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount)
|
||||
void glPointParameterf (GLenum pname, GLfloat param)
|
||||
|
@ -66,6 +67,7 @@ GL_VERSION_1_4
|
|||
void glSecondaryColor3us (GLushort red, GLushort green, GLushort blue)
|
||||
void glSecondaryColor3usv (const GLushort *v)
|
||||
void glSecondaryColorPointer (GLint size, GLenum type, GLsizei stride, GLvoid *pointer)
|
||||
void glSecondaryColorPointer (GLint size, GLenum type, GLsizei stride, ARRAY pointer)
|
||||
void glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha)
|
||||
void glWindowPos2d (GLdouble x, GLdouble y)
|
||||
void glWindowPos2f (GLfloat x, GLfloat y)
|
||||
|
|
|
@ -33,11 +33,11 @@ http://oss.sgi.com/projects/ogl-sample/registry/ARB/vertex_buffer_object.txt
|
|||
GL_DYNAMIC_COPY_ARB 0x88EA
|
||||
void glBindBufferARB (GLenum target, GLuint buffer)
|
||||
void glBufferDataARB (GLenum target, GLsizeiptrARB size, const GLvoid* data, GLenum usage)
|
||||
void glBufferDataARB (GLenum target, GLsizeiptrARB size, IntPtr data, GLenum usage)
|
||||
void glBufferDataARB (GLenum target, GLsizeiptrARB size, System.Array data, GLenum usage)
|
||||
void glBufferDataARB (GLenum target, GLsizeiptrARB size, ARRAY data, GLenum usage)
|
||||
void glBufferDataARB (GLenum target, int size, ARRAY data, GLenum usage)
|
||||
void glBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid* data)
|
||||
void glBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, IntPtr data)
|
||||
void glBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, System.Array data)
|
||||
void glBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, ARRAY data)
|
||||
void glBufferSubDataARB (GLenum target, int offset, int size, ARRAY data)
|
||||
void glDeleteBuffersARB (GLsizei n, const GLuint* buffers)
|
||||
void glDeleteBuffersARB (GLsizei n, ref GLuint buffers)
|
||||
void glDeleteBuffersARB (GLsizei n, GLuint [] buffers)
|
||||
|
@ -50,7 +50,8 @@ http://oss.sgi.com/projects/ogl-sample/registry/ARB/vertex_buffer_object.txt
|
|||
void glGetBufferPointervARB (GLenum target, GLenum pname, GLvoid** params)
|
||||
void glGetBufferPointervARB (GLenum target, GLenum pname, out IntPtr params)
|
||||
void glGetBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, GLvoid* data)
|
||||
void glGetBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, System.Array data)
|
||||
void glGetBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, ARRAY data)
|
||||
void glGetBufferSubDataARB (GLenum target, int offset, int size, ARRAY data)
|
||||
GLboolean glIsBufferARB (GLuint buffer)
|
||||
IntPtr glMapBufferARB (GLenum target, GLenum access)
|
||||
GLboolean glUnmapBufferARB (GLenum target)
|
||||
|
|
Загрузка…
Ссылка в новой задаче