apple: Remove apple_glx_get_proc_address
[mesa.git] / src / glx / apple / apple_xgl_api.h
1 /*
2 Copyright (c) 2011 Apple Inc.
3
4 Permission is hereby granted, free of charge, to any person
5 obtaining a copy of this software and associated documentation files
6 (the "Software"), to deal in the Software without restriction,
7 including without limitation the rights to use, copy, modify, merge,
8 publish, distribute, sublicense, and/or sell copies of the Software,
9 and to permit persons to whom the Software is furnished to do so,
10 subject to the following conditions:
11
12 The above copyright notice and this permission notice shall be
13 included in all copies or substantial portions of the Software.
14
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 NONINFRINGEMENT. IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT
19 HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 DEALINGS IN THE SOFTWARE.
23
24 Except as contained in this notice, the name(s) of the above
25 copyright holders shall not be used in advertising or otherwise to
26 promote the sale, use or other dealings in this Software without
27 prior written authorization.
28 */
29
30 #ifndef APPLE_XGL_API_H
31
32 __private_extern__ void
33 __applegl_glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height,
34 GLenum format, GLenum type, void *pixels);
35
36 __private_extern__ void
37 __applegl_glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type);
38
39 __private_extern__ void
40 __applegl_glCopyColorTable(GLenum target, GLenum internalformat, GLint x, GLint y,
41 GLsizei width);
42
43 __private_extern__ void
44 __applegl_glDrawBuffer(GLenum mode);
45
46 __private_extern__ void
47 __applegl_glDrawBuffersARB(GLsizei n, const GLenum * bufs);
48
49 __private_extern__ void
50 __applegl_glViewport(GLint x, GLint y, GLsizei width, GLsizei height);
51
52 #endif