]> git.pld-linux.org Git - packages/Mesa.git/blame - missing-type.patch
- glxext.h references undefined type, fix this
[packages/Mesa.git] / missing-type.patch
CommitLineData
4db28b99
JR
1--- Mesa-10.3.2/include/GL/glxext.h~ 2014-10-22 16:37:26.000000000 +0200
2+++ Mesa-10.3.2/include/GL/glxext.h 2014-10-30 19:49:51.561677653 +0100
3@@ -477,6 +477,8 @@
4
5 #ifndef GLX_NV_copy_buffer
6 #define GLX_NV_copy_buffer 1
7+#include <stddef.h>
8+typedef ptrdiff_t GLintptr;
9 typedef void ( *PFNGLXCOPYBUFFERSUBDATANVPROC) (Display *dpy, GLXContext readCtx, GLXContext writeCtx, GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
10 typedef void ( *PFNGLXNAMEDCOPYBUFFERSUBDATANVPROC) (Display *dpy, GLXContext readCtx, GLXContext writeCtx, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
11 #ifdef GLX_GLXEXT_PROTOTYPES
This page took 0.07188 seconds and 4 git commands to generate.