Mathias Agopian | b1a39d6 | 2009-05-27 20:38:06 -0700 | [diff] [blame^] | 1 | void API_ENTRY(__glEGLImageTargetTexture2DOES)(GLenum target, GLeglImageOES image) { |
| 2 | CALL_GL_API(glEGLImageTargetTexture2DOES, target, image); |
| 3 | } |
| 4 | void API_ENTRY(__glEGLImageTargetRenderbufferStorageOES)(GLenum target, GLeglImageOES image) { |
| 5 | CALL_GL_API(glEGLImageTargetRenderbufferStorageOES, target, image); |
| 6 | } |
| 7 | void API_ENTRY(glGetProgramBinaryOES)(GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary) { |
| 8 | CALL_GL_API(glGetProgramBinaryOES, program, bufSize, length, binaryFormat, binary); |
| 9 | } |
| 10 | void API_ENTRY(glProgramBinaryOES)(GLuint program, GLenum binaryFormat, const void *binary, GLint length) { |
| 11 | CALL_GL_API(glProgramBinaryOES, program, binaryFormat, binary, length); |
| 12 | } |
| 13 | void* API_ENTRY(glMapBufferOES)(GLenum target, GLenum access) { |
| 14 | CALL_GL_API_RETURN(glMapBufferOES, target, access); |
| 15 | } |
| 16 | GLboolean API_ENTRY(glUnmapBufferOES)(GLenum target) { |
| 17 | CALL_GL_API_RETURN(glUnmapBufferOES, target); |
| 18 | } |
| 19 | void API_ENTRY(glGetBufferPointervOES)(GLenum target, GLenum pname, void** params) { |
| 20 | CALL_GL_API(glGetBufferPointervOES, target, pname, params); |
| 21 | } |
| 22 | void API_ENTRY(glTexImage3DOES)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void* pixels) { |
| 23 | CALL_GL_API(glTexImage3DOES, target, level, internalformat, width, height, depth, border, format, type, pixels); |
| 24 | } |
| 25 | void API_ENTRY(glTexSubImage3DOES)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void* pixels) { |
| 26 | CALL_GL_API(glTexSubImage3DOES, target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels); |
| 27 | } |
| 28 | void API_ENTRY(glCopyTexSubImage3DOES)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) { |
| 29 | CALL_GL_API(glCopyTexSubImage3DOES, target, level, xoffset, yoffset, zoffset, x, y, width, height); |
| 30 | } |
| 31 | void API_ENTRY(glCompressedTexImage3DOES)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void* data) { |
| 32 | CALL_GL_API(glCompressedTexImage3DOES, target, level, internalformat, width, height, depth, border, imageSize, data); |
| 33 | } |
| 34 | void API_ENTRY(glCompressedTexSubImage3DOES)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void* data) { |
| 35 | CALL_GL_API(glCompressedTexSubImage3DOES, target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, data); |
| 36 | } |
| 37 | void API_ENTRY(glFramebufferTexture3DOES)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset) { |
| 38 | CALL_GL_API(glFramebufferTexture3DOES, target, attachment, textarget, texture, level, zoffset); |
| 39 | } |
| 40 | void API_ENTRY(glGetPerfMonitorGroupsAMD)(GLint *numGroups, GLsizei groupsSize, GLuint *groups) { |
| 41 | CALL_GL_API(glGetPerfMonitorGroupsAMD, numGroups, groupsSize, groups); |
| 42 | } |
| 43 | void API_ENTRY(glGetPerfMonitorCountersAMD)(GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters) { |
| 44 | CALL_GL_API(glGetPerfMonitorCountersAMD, group, numCounters, maxActiveCounters, counterSize, counters); |
| 45 | } |
| 46 | void API_ENTRY(glGetPerfMonitorGroupStringAMD)(GLuint group, GLsizei bufSize, GLsizei *length, char *groupString) { |
| 47 | CALL_GL_API(glGetPerfMonitorGroupStringAMD, group, bufSize, length, groupString); |
| 48 | } |
| 49 | void API_ENTRY(glGetPerfMonitorCounterStringAMD)(GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, char *counterString) { |
| 50 | CALL_GL_API(glGetPerfMonitorCounterStringAMD, group, counter, bufSize, length, counterString); |
| 51 | } |
| 52 | void API_ENTRY(glGetPerfMonitorCounterInfoAMD)(GLuint group, GLuint counter, GLenum pname, void *data) { |
| 53 | CALL_GL_API(glGetPerfMonitorCounterInfoAMD, group, counter, pname, data); |
| 54 | } |
| 55 | void API_ENTRY(glGenPerfMonitorsAMD)(GLsizei n, GLuint *monitors) { |
| 56 | CALL_GL_API(glGenPerfMonitorsAMD, n, monitors); |
| 57 | } |
| 58 | void API_ENTRY(glDeletePerfMonitorsAMD)(GLsizei n, GLuint *monitors) { |
| 59 | CALL_GL_API(glDeletePerfMonitorsAMD, n, monitors); |
| 60 | } |
| 61 | void API_ENTRY(glSelectPerfMonitorCountersAMD)(GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *countersList) { |
| 62 | CALL_GL_API(glSelectPerfMonitorCountersAMD, monitor, enable, group, numCounters, countersList); |
| 63 | } |
| 64 | void API_ENTRY(glBeginPerfMonitorAMD)(GLuint monitor) { |
| 65 | CALL_GL_API(glBeginPerfMonitorAMD, monitor); |
| 66 | } |
| 67 | void API_ENTRY(glEndPerfMonitorAMD)(GLuint monitor) { |
| 68 | CALL_GL_API(glEndPerfMonitorAMD, monitor); |
| 69 | } |
| 70 | void API_ENTRY(glGetPerfMonitorCounterDataAMD)(GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten) { |
| 71 | CALL_GL_API(glGetPerfMonitorCounterDataAMD, monitor, pname, dataSize, data, bytesWritten); |
| 72 | } |
| 73 | void API_ENTRY(glDeleteFencesNV)(GLsizei n, const GLuint *fences) { |
| 74 | CALL_GL_API(glDeleteFencesNV, n, fences); |
| 75 | } |
| 76 | void API_ENTRY(glGenFencesNV)(GLsizei n, GLuint *fences) { |
| 77 | CALL_GL_API(glGenFencesNV, n, fences); |
| 78 | } |
| 79 | GLboolean API_ENTRY(glIsFenceNV)(GLuint fence) { |
| 80 | CALL_GL_API_RETURN(glIsFenceNV, fence); |
| 81 | } |
| 82 | GLboolean API_ENTRY(glTestFenceNV)(GLuint fence) { |
| 83 | CALL_GL_API_RETURN(glTestFenceNV, fence); |
| 84 | } |
| 85 | void API_ENTRY(glGetFenceivNV)(GLuint fence, GLenum pname, GLint *params) { |
| 86 | CALL_GL_API(glGetFenceivNV, fence, pname, params); |
| 87 | } |
| 88 | void API_ENTRY(glFinishFenceNV)(GLuint fence) { |
| 89 | CALL_GL_API(glFinishFenceNV, fence); |
| 90 | } |
| 91 | void API_ENTRY(glSetFenceNV)(GLuint fence, GLenum condition) { |
| 92 | CALL_GL_API(glSetFenceNV, fence, condition); |
| 93 | } |
| 94 | void API_ENTRY(glGetDriverControlsQCOM)(GLint *num, GLsizei size, GLuint *driverControls) { |
| 95 | CALL_GL_API(glGetDriverControlsQCOM, num, size, driverControls); |
| 96 | } |
| 97 | void API_ENTRY(glGetDriverControlStringQCOM)(GLuint driverControl, GLsizei bufSize, GLsizei *length, char *driverControlString) { |
| 98 | CALL_GL_API(glGetDriverControlStringQCOM, driverControl, bufSize, length, driverControlString); |
| 99 | } |
| 100 | void API_ENTRY(glEnableDriverControlQCOM)(GLuint driverControl) { |
| 101 | CALL_GL_API(glEnableDriverControlQCOM, driverControl); |
| 102 | } |
| 103 | void API_ENTRY(glDisableDriverControlQCOM)(GLuint driverControl) { |
| 104 | CALL_GL_API(glDisableDriverControlQCOM, driverControl); |
| 105 | } |