Add DrawPixels and PixelZoom

This commit is contained in:
smallmodel 2024-09-15 01:11:52 +02:00
parent 46e9046629
commit 844a72e0f3
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -62,6 +62,7 @@ extern void (APIENTRYP qglUnlockArraysEXT) (void);
GLE(void, Disable, GLenum cap) \
GLE(void, DrawArrays, GLenum mode, GLint first, GLsizei count) \
GLE(void, DrawElements, GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) \
GLE(void, DrawPixels, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels) \
GLE(void, Enable, GLenum cap) \
GLE(void, Finish, void) \
GLE(void, Flush, void) \
@ -75,6 +76,7 @@ extern void (APIENTRYP qglUnlockArraysEXT) (void);
GLE(const GLubyte *, GetString, GLenum name) \
GLE(void, LineStipple, GLint factor, GLushort pattern) \
GLE(void, LineWidth, GLfloat width) \
GLE(void, PixelZoom, GLfloat xfactor, GLfloat yfactor) \
GLE(void, PolygonOffset, GLfloat factor, GLfloat units) \
GLE(void, ReadPixels, GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels) \
GLE(void, Scissor, GLint x, GLint y, GLsizei width, GLsizei height) \