Merge branch 'nouveau-gallium-0.1' into darktama-gallium-0.1
[mesa.git] / src / mesa / pipe / xlib / xmesaP.h
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.1
4 *
5 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26 #ifndef XMESAP_H
27 #define XMESAP_H
28
29
30 #include "GL/xmesa.h"
31 #include "mtypes.h"
32 #ifdef XFree86Server
33 #include "xm_image.h"
34 #endif
35
36 #include "state_tracker/st_context.h"
37 #include "state_tracker/st_public.h"
38
39
40 extern _glthread_Mutex _xmesa_lock;
41
42 extern XMesaBuffer XMesaBufferList;
43
44
45 /**
46 * Visual inforation, derived from GLvisual.
47 * Basically corresponds to an XVisualInfo.
48 */
49 struct xmesa_visual {
50 GLvisual mesa_visual; /* Device independent visual parameters */
51 XMesaDisplay *display; /* The X11 display */
52 #ifdef XFree86Server
53 GLint ColormapEntries;
54 GLint nplanes;
55 #else
56 XMesaVisualInfo visinfo; /* X's visual info (pointer to private copy) */
57 XVisualInfo *vishandle; /* Only used in fakeglx.c */
58 #endif
59 GLint BitsPerPixel; /* True bits per pixel for XImages */
60
61 GLboolean ximage_flag; /* Use XImage for back buffer (not pixmap)? */
62 };
63
64
65 /**
66 * Context info, derived from st_context.
67 * Basically corresponds to a GLXContext.
68 */
69 struct xmesa_context {
70 struct st_context *st;
71 XMesaVisual xm_visual; /** pixel format info */
72 XMesaBuffer xm_buffer; /** current drawbuffer */
73 };
74
75
76 /**
77 * Types of X/GLX drawables we might render into.
78 */
79 typedef enum {
80 WINDOW, /* An X window */
81 GLXWINDOW, /* GLX window */
82 PIXMAP, /* GLX pixmap */
83 PBUFFER /* GLX Pbuffer */
84 } BufferType;
85
86
87 /**
88 * Framebuffer information, derived from.
89 * Basically corresponds to a GLXDrawable.
90 */
91 struct xmesa_buffer {
92 struct st_framebuffer *stfb;
93
94 GLboolean wasCurrent; /* was ever the current buffer? */
95 XMesaVisual xm_visual; /* the X/Mesa visual */
96 XMesaDrawable drawable; /* Usually the X window ID */
97 XMesaColormap cmap; /* the X colormap */
98 BufferType type; /* window, pixmap, pbuffer or glxwindow */
99
100 XMesaImage *tempImage;
101 unsigned long selectedEvents;/* for pbuffers only */
102
103 GLuint shm; /* X Shared Memory extension status: */
104 /* 0 = not available */
105 /* 1 = XImage support available */
106 /* 2 = Pixmap support available too */
107 #if defined(USE_XSHM) && !defined(XFree86Server)
108 XShmSegmentInfo shminfo;
109 #endif
110
111 XMesaGC gc; /* scratch GC for span, line, tri drawing */
112
113 /* GLX_EXT_texture_from_pixmap */
114 GLint TextureTarget; /** GLX_TEXTURE_1D_EXT, for example */
115 GLint TextureFormat; /** GLX_TEXTURE_FORMAT_RGB_EXT, for example */
116 GLint TextureMipmap; /** 0 or 1 */
117
118 struct xmesa_buffer *Next; /* Linked list pointer: */
119 };
120
121
122
123 /** cast wrapper */
124 static INLINE XMesaContext
125 xmesa_context(GLcontext *ctx)
126 {
127 return (XMesaContext) ctx->DriverCtx;
128 }
129
130
131 /** cast wrapper */
132 static INLINE XMesaBuffer
133 xmesa_buffer(GLframebuffer *fb)
134 {
135 struct st_framebuffer *stfb = (struct st_framebuffer *) fb;
136 return (XMesaBuffer) st_framebuffer_private(stfb);
137 }
138
139
140 extern void
141 xmesa_delete_framebuffer(struct gl_framebuffer *fb);
142
143 extern XMesaBuffer
144 xmesa_find_buffer(XMesaDisplay *dpy, XMesaColormap cmap, XMesaBuffer notThis);
145
146 extern void
147 xmesa_check_and_update_buffer_size(XMesaContext xmctx, XMesaBuffer drawBuffer);
148
149 extern void
150 xmesa_destroy_buffers_on_display(XMesaDisplay *dpy);
151
152 extern struct pipe_context *
153 xmesa_create_pipe_context(XMesaContext xm, uint pixelformat);
154
155 static INLINE GLuint
156 xmesa_buffer_width(XMesaBuffer b)
157 {
158 return b->stfb->Base.Width;
159 }
160
161 static INLINE GLuint
162 xmesa_buffer_height(XMesaBuffer b)
163 {
164 return b->stfb->Base.Height;
165 }
166
167 extern void
168 xmesa_display_surface(XMesaBuffer b, const struct pipe_surface *surf);
169
170 #endif