Advertisement
Guest User

xorg-server-1.10.6.patch

a guest
Mar 2nd, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.21 KB | None | 0 0
  1. diff -rupN xorg-server-1.10.6/hw/dmx/glxProxy/compsize.h xorg-server-1.10.6_new/hw/dmx/glxProxy/compsize.h
  2. --- xorg-server-1.10.6/hw/dmx/glxProxy/compsize.h 1969-12-31 16:00:00.000000000 -0800
  3. +++ xorg-server-1.10.6_new/hw/dmx/glxProxy/compsize.h 2012-03-02 11:43:28.311119578 -0800
  4. @@ -0,0 +1,51 @@
  5. +/*
  6. + * Copyright 2011 Apple Inc.
  7. + *
  8. + * All Rights Reserved.
  9. + *
  10. + * Permission is hereby granted, free of charge, to any person obtaining
  11. + * a copy of this software and associated documentation files (the
  12. + * "Software"), to deal in the Software without restriction, including
  13. + * without limitation on the rights to use, copy, modify, merge,
  14. + * publish, distribute, sublicense, and/or sell copies of the Software,
  15. + * and to permit persons to whom the Software is furnished to do so,
  16. + * subject to the following conditions:
  17. + *
  18. + * The above copyright notice and this permission notice (including the
  19. + * next paragraph) shall be included in all copies or substantial
  20. + * portions of the Software.
  21. + *
  22. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  23. + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  24. + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  25. + * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
  26. + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  27. + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  28. + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  29. + * SOFTWARE.
  30. + */
  31. +
  32. +#ifndef __compsize_h__
  33. +#define __compsize_h__
  34. +
  35. +extern GLint __glColorTableParameterfv_size(GLenum pname);
  36. +extern GLint __glColorTableParameteriv_size(GLenum pname);
  37. +extern GLint __glConvolutionParameterfv_size(GLenum pname);
  38. +extern GLint __glConvolutionParameteriv_size(GLenum pname);
  39. +extern GLint __glFogfv_size(GLenum pname);
  40. +extern GLint __glFogiv_size(GLenum pname);
  41. +extern GLint __glLightModelfv_size(GLenum pname);
  42. +extern GLint __glLightModeliv_size(GLenum pname);
  43. +extern GLint __glLightfv_size(GLenum pname);
  44. +extern GLint __glLightiv_size(GLenum pname);
  45. +extern GLint __glMaterialfv_size(GLenum pname);
  46. +extern GLint __glMaterialiv_size(GLenum pname);
  47. +extern GLint __glTexEnvfv_size(GLenum e);
  48. +extern GLint __glTexEnviv_size(GLenum e);
  49. +extern GLint __glTexGendv_size(GLenum e);
  50. +extern GLint __glTexGenfv_size(GLenum e);
  51. +extern GLint __glTexGeniv_size(GLenum e);
  52. +extern GLint __glTexParameterfv_size(GLenum e);
  53. +extern GLint __glTexParameteriv_size(GLenum e);
  54. +
  55. +#endif /* !__compsize_h__ */
  56. \ No newline at end of file
  57. diff -rupN xorg-server-1.10.6/hw/dmx/glxProxy/glxcmds.h xorg-server-1.10.6_new/hw/dmx/glxProxy/glxcmds.h
  58. --- xorg-server-1.10.6/hw/dmx/glxProxy/glxcmds.h 1969-12-31 16:00:00.000000000 -0800
  59. +++ xorg-server-1.10.6_new/hw/dmx/glxProxy/glxcmds.h 2012-03-02 11:43:38.794452815 -0800
  60. @@ -0,0 +1,37 @@
  61. +/*
  62. + * Copyright 2011 Apple Inc.
  63. + *
  64. + * All Rights Reserved.
  65. + *
  66. + * Permission is hereby granted, free of charge, to any person obtaining
  67. + * a copy of this software and associated documentation files (the
  68. + * "Software"), to deal in the Software without restriction, including
  69. + * without limitation on the rights to use, copy, modify, merge,
  70. + * publish, distribute, sublicense, and/or sell copies of the Software,
  71. + * and to permit persons to whom the Software is furnished to do so,
  72. + * subject to the following conditions:
  73. + *
  74. + * The above copyright notice and this permission notice (including the
  75. + * next paragraph) shall be included in all copies or substantial
  76. + * portions of the Software.
  77. + *
  78. + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  79. + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  80. + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  81. + * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
  82. + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  83. + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  84. + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  85. + * SOFTWARE.
  86. + */
  87. +
  88. +#ifndef __GLX_cmds_h__
  89. +#define __GLX_cmds_h__
  90. +
  91. +extern int __glXBindSwapBarrierSGIX(__GLXclientState *cl, GLbyte *pc);
  92. +extern int __glXCreateContextWithConfigSGIX(__GLXclientState *cl, GLbyte *pc);
  93. +extern int __glXJoinSwapGroupSGIX(__GLXclientState *cl, GLbyte *pc);
  94. +extern int __glXMakeCurrentReadSGI(__GLXclientState *cl, GLbyte *pc);
  95. +extern int __glXQueryMaxSwapBarriersSGIX(__GLXclientState *cl, GLbyte *pc);
  96. +
  97. +#endif /* !__GLX_cmds_h__ */
  98. \ No newline at end of file
  99. diff -rupN xorg-server-1.10.6/hw/dmx/glxProxy/Makefile.am xorg-server-1.10.6_new/hw/dmx/glxProxy/Makefile.am
  100. --- xorg-server-1.10.6/hw/dmx/glxProxy/Makefile.am 2011-06-11 09:55:47.000000000 -0700
  101. +++ xorg-server-1.10.6_new/hw/dmx/glxProxy/Makefile.am 2012-03-02 11:43:46.964452691 -0800
  102. @@ -1,10 +1,12 @@
  103. noinst_LIBRARIES = libglxproxy.a
  104.  
  105. libglxproxy_a_SOURCES = compsize.c \
  106. + compsize.h \
  107. g_disptab.c \
  108. g_disptab.h \
  109. global.c \
  110. glxcmds.c \
  111. + glxcmds.h \
  112. glxcmdsswap.c \
  113. glxcontext.h \
  114. glxdrawable.h \
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement