1 /**************************************************************************
3 * Copyright 2007 Tungsten Graphics, Inc., Bismarck, ND., USA
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
18 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
27 **************************************************************************/
33 #include "pipe/p_compiler.h"
34 #include "util/u_debug.h"
35 #include "target-helpers/wrap_screen.h"
36 #include "state_tracker/xlib_sw_winsys.h"
37 #include "xm_public.h"
39 #include "state_tracker/st_gl_api.h"
41 /* piggy back on this libGL for OpenGL support in EGL */
43 st_api_create_OpenGL()
45 return st_gl_api_create();
49 /* Helper function to choose and instantiate one of the software rasterizers:
50 * cell, llvmpipe, softpipe.
52 * This function could be shared, but currently causes headaches for
53 * the build systems, particularly scons if we try. Long term, want
54 * to avoid having global #defines for things like GALLIUM_LLVMPIPE,
55 * GALLIUM_CELL, etc. Scons already eliminates those #defines, so
56 * things that are painful for it now are likely to be painful for
57 * other build systems in the future.
59 * Copies (full or partial):
68 #ifdef GALLIUM_SOFTPIPE
69 #include "softpipe/sp_public.h"
72 #ifdef GALLIUM_LLVMPIPE
73 #include "llvmpipe/lp_public.h"
77 #include "cell/ppu/cell_public.h"
80 static struct pipe_screen
*
81 swrast_create_screen(struct sw_winsys
*winsys
)
83 const char *default_driver
;
85 struct pipe_screen
*screen
= NULL
;
87 #if defined(GALLIUM_CELL)
88 default_driver
= "cell";
89 #elif defined(GALLIUM_LLVMPIPE)
90 default_driver
= "llvmpipe";
91 #elif defined(GALLIUM_SOFTPIPE)
92 default_driver
= "softpipe";
97 driver
= debug_get_option("GALLIUM_DRIVER", default_driver
);
99 #if defined(GALLIUM_CELL)
100 if (screen
== NULL
&& strcmp(driver
, "cell") == 0)
101 screen
= cell_create_screen( winsys
);
104 #if defined(GALLIUM_LLVMPIPE)
105 if (screen
== NULL
&& strcmp(driver
, "llvmpipe") == 0)
106 screen
= llvmpipe_create_screen( winsys
);
109 #if defined(GALLIUM_SOFTPIPE)
111 screen
= softpipe_create_screen( winsys
);
117 /* Helper function to build a subset of a driver stack consisting of
118 * one of the software rasterizers (cell, llvmpipe, softpipe) and the
121 static struct pipe_screen
*
122 swrast_xlib_create_screen( Display
*display
)
124 struct sw_winsys
*winsys
;
125 struct pipe_screen
*screen
= NULL
;
127 /* Create the underlying winsys, which performs presents to Xlib
130 winsys
= xlib_create_sw_winsys( display
);
134 /* Create a software rasterizer on top of that winsys:
136 screen
= swrast_create_screen( winsys
);
140 /* Inject any wrapping layers we want to here:
142 return gallium_wrap_screen( screen
);
146 winsys
->destroy( winsys
);
151 static struct xm_driver xlib_driver
=
153 .create_pipe_screen
= swrast_xlib_create_screen
,
154 .create_st_api
= st_gl_api_create
,
158 /* Build the rendering stack.
160 static void _init( void ) __attribute__((constructor
));
161 static void _init( void )
163 /* Initialize the xlib libgl code, pass in the winsys:
165 xmesa_set_driver( &xlib_driver
);
169 /***********************************************************************
171 * Butt-ugly hack to convince the linker not to throw away public GL
172 * symbols (they are all referenced from getprocaddress, I guess).
174 extern void (*linker_foo(const unsigned char *procName
))();
175 extern void (*glXGetProcAddress(const unsigned char *procName
))();
177 extern void (*linker_foo(const unsigned char *procName
))()
179 return glXGetProcAddress(procName
);
184 * When GLX_INDIRECT_RENDERING is defined, some symbols are missing in
185 * libglapi.a. We need to define them here.
187 #ifdef GLX_INDIRECT_RENDERING
189 #define GL_GLEXT_PROTOTYPES
191 #include "glapi/glapi.h"
192 #include "glapi/glapitable.h"
193 #include "glapi/glapidispatch.h"
195 #if defined(USE_MGL_NAMESPACE)
196 #define NAME(func) mgl##func
198 #define NAME(func) gl##func
201 #define DISPATCH(FUNC, ARGS, MESSAGE) \
202 CALL_ ## FUNC(GET_DISPATCH(), ARGS);
204 #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
205 return CALL_ ## FUNC(GET_DISPATCH(), ARGS);
207 /* skip normal ones */
208 #define _GLAPI_SKIP_NORMAL_ENTRY_POINTS
209 #include "glapi/glapitemp.h"
211 #endif /* GLX_INDIRECT_RENDERING */