2002-06-01 01:06:46 +02:00
|
|
|
/*
|
2000-05-12 22:18:14 +02:00
|
|
|
* X11DRV OpenGL functions
|
|
|
|
*
|
|
|
|
* Copyright 2000 Lionel Ulmer
|
2006-08-23 02:03:16 +02:00
|
|
|
* Copyright 2006 Roderick Colenbrander
|
2000-05-12 22:18:14 +02:00
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2000-05-12 22:18:14 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2002-11-15 05:16:38 +01:00
|
|
|
#include "wine/port.h"
|
2000-05-12 22:18:14 +02:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "x11drv.h"
|
2004-01-20 23:48:57 +01:00
|
|
|
#include "wine/library.h"
|
2002-09-25 02:29:56 +02:00
|
|
|
#include "wine/debug.h"
|
2000-05-12 22:18:14 +02:00
|
|
|
|
2006-03-25 13:07:23 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wgl);
|
|
|
|
WINE_DECLARE_DEBUG_CHANNEL(opengl);
|
2000-05-12 22:18:14 +02:00
|
|
|
|
2002-11-15 05:16:38 +01:00
|
|
|
#if defined(HAVE_GL_GL_H) && defined(HAVE_GL_GLX_H)
|
2000-05-12 22:18:14 +02:00
|
|
|
|
2002-09-25 02:29:56 +02:00
|
|
|
#undef APIENTRY
|
|
|
|
#undef CALLBACK
|
|
|
|
#undef WINAPI
|
|
|
|
|
2002-10-02 03:24:27 +02:00
|
|
|
#ifdef HAVE_GL_GL_H
|
|
|
|
# include <GL/gl.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_GL_GLX_H
|
|
|
|
# include <GL/glx.h>
|
|
|
|
#endif
|
2002-09-25 02:29:56 +02:00
|
|
|
#ifdef HAVE_GL_GLEXT_H
|
|
|
|
# include <GL/glext.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef APIENTRY
|
|
|
|
#undef CALLBACK
|
|
|
|
#undef WINAPI
|
|
|
|
|
|
|
|
/* Redefines the constants */
|
|
|
|
#define CALLBACK __stdcall
|
|
|
|
#define WINAPI __stdcall
|
|
|
|
#define APIENTRY WINAPI
|
|
|
|
|
2006-08-25 18:37:52 +02:00
|
|
|
WINE_DECLARE_DEBUG_CHANNEL(fps);
|
2002-09-25 02:29:56 +02:00
|
|
|
|
2004-11-30 22:38:57 +01:00
|
|
|
static void dump_PIXELFORMATDESCRIPTOR(const PIXELFORMATDESCRIPTOR *ppfd) {
|
2005-09-25 17:23:21 +02:00
|
|
|
TRACE(" - size / version : %d / %d\n", ppfd->nSize, ppfd->nVersion);
|
|
|
|
TRACE(" - dwFlags : ");
|
|
|
|
#define TEST_AND_DUMP(t,tv) if ((t) & (tv)) TRACE(#tv " ")
|
2000-05-12 22:18:14 +02:00
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_DEPTH_DONTCARE);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_DOUBLEBUFFER);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_DOUBLEBUFFER_DONTCARE);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_DRAW_TO_WINDOW);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_DRAW_TO_BITMAP);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_GENERIC_ACCELERATED);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_GENERIC_FORMAT);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_NEED_PALETTE);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_NEED_SYSTEM_PALETTE);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_STEREO);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_STEREO_DONTCARE);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_SUPPORT_GDI);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_SUPPORT_OPENGL);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_SWAP_COPY);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_SWAP_EXCHANGE);
|
|
|
|
TEST_AND_DUMP(ppfd->dwFlags, PFD_SWAP_LAYER_BUFFERS);
|
|
|
|
#undef TEST_AND_DUMP
|
2005-09-25 17:23:21 +02:00
|
|
|
TRACE("\n");
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2005-09-25 17:23:21 +02:00
|
|
|
TRACE(" - iPixelType : ");
|
2000-05-12 22:18:14 +02:00
|
|
|
switch (ppfd->iPixelType) {
|
2005-09-25 17:23:21 +02:00
|
|
|
case PFD_TYPE_RGBA: TRACE("PFD_TYPE_RGBA"); break;
|
|
|
|
case PFD_TYPE_COLORINDEX: TRACE("PFD_TYPE_COLORINDEX"); break;
|
2000-05-12 22:18:14 +02:00
|
|
|
}
|
2005-09-25 17:23:21 +02:00
|
|
|
TRACE("\n");
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2005-09-25 17:23:21 +02:00
|
|
|
TRACE(" - Color : %d\n", ppfd->cColorBits);
|
|
|
|
TRACE(" - Red : %d\n", ppfd->cRedBits);
|
|
|
|
TRACE(" - Green : %d\n", ppfd->cGreenBits);
|
|
|
|
TRACE(" - Blue : %d\n", ppfd->cBlueBits);
|
|
|
|
TRACE(" - Alpha : %d\n", ppfd->cAlphaBits);
|
|
|
|
TRACE(" - Accum : %d\n", ppfd->cAccumBits);
|
|
|
|
TRACE(" - Depth : %d\n", ppfd->cDepthBits);
|
|
|
|
TRACE(" - Stencil : %d\n", ppfd->cStencilBits);
|
|
|
|
TRACE(" - Aux : %d\n", ppfd->cAuxBuffers);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2005-09-25 17:23:21 +02:00
|
|
|
TRACE(" - iLayerType : ");
|
2000-05-12 22:18:14 +02:00
|
|
|
switch (ppfd->iLayerType) {
|
2005-09-25 17:23:21 +02:00
|
|
|
case PFD_MAIN_PLANE: TRACE("PFD_MAIN_PLANE"); break;
|
|
|
|
case PFD_OVERLAY_PLANE: TRACE("PFD_OVERLAY_PLANE"); break;
|
|
|
|
case (BYTE)PFD_UNDERLAY_PLANE: TRACE("PFD_UNDERLAY_PLANE"); break;
|
2000-05-12 22:18:14 +02:00
|
|
|
}
|
2005-09-25 17:23:21 +02:00
|
|
|
TRACE("\n");
|
2000-05-12 22:18:14 +02:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2002-11-15 05:16:38 +01:00
|
|
|
/* No need to load any other libraries as according to the ABI, libGL should be self-sufficient and
|
|
|
|
include all dependencies
|
|
|
|
*/
|
|
|
|
#ifndef SONAME_LIBGL
|
|
|
|
#define SONAME_LIBGL "libGL.so"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MAKE_FUNCPTR(f) static typeof(f) * p##f;
|
2005-04-28 20:29:12 +02:00
|
|
|
MAKE_FUNCPTR(glGetError)
|
2002-11-15 05:16:38 +01:00
|
|
|
MAKE_FUNCPTR(glXChooseVisual)
|
|
|
|
MAKE_FUNCPTR(glXGetConfig)
|
|
|
|
MAKE_FUNCPTR(glXSwapBuffers)
|
|
|
|
MAKE_FUNCPTR(glXQueryExtension)
|
2005-04-28 20:29:12 +02:00
|
|
|
|
|
|
|
MAKE_FUNCPTR(glXGetFBConfigs)
|
|
|
|
MAKE_FUNCPTR(glXChooseFBConfig)
|
|
|
|
MAKE_FUNCPTR(glXGetFBConfigAttrib)
|
2005-09-26 13:04:12 +02:00
|
|
|
MAKE_FUNCPTR(glXCreateGLXPixmap)
|
|
|
|
MAKE_FUNCPTR(glXDestroyGLXPixmap)
|
2005-12-06 11:33:33 +01:00
|
|
|
/* MAKE_FUNCPTR(glXQueryDrawable) */
|
2002-11-15 05:16:38 +01:00
|
|
|
#undef MAKE_FUNCPTR
|
|
|
|
|
2005-06-29 21:28:06 +02:00
|
|
|
static BOOL has_opengl(void)
|
|
|
|
{
|
|
|
|
static int init_done;
|
|
|
|
static void *opengl_handle;
|
|
|
|
|
2002-11-15 05:16:38 +01:00
|
|
|
int error_base, event_base;
|
|
|
|
|
2005-06-29 21:28:06 +02:00
|
|
|
if (init_done) return (opengl_handle != NULL);
|
|
|
|
init_done = 1;
|
|
|
|
|
2002-11-15 05:16:38 +01:00
|
|
|
opengl_handle = wine_dlopen(SONAME_LIBGL, RTLD_NOW|RTLD_GLOBAL, NULL, 0);
|
2005-06-29 21:28:06 +02:00
|
|
|
if (opengl_handle == NULL) return FALSE;
|
2002-11-15 05:16:38 +01:00
|
|
|
|
2005-12-16 12:37:34 +01:00
|
|
|
#define LOAD_FUNCPTR(f) if((p##f = wine_dlsym(RTLD_DEFAULT, #f, NULL, 0)) == NULL) goto sym_not_found;
|
2005-04-28 20:29:12 +02:00
|
|
|
LOAD_FUNCPTR(glGetError)
|
2002-11-15 05:16:38 +01:00
|
|
|
LOAD_FUNCPTR(glXChooseVisual)
|
|
|
|
LOAD_FUNCPTR(glXGetConfig)
|
|
|
|
LOAD_FUNCPTR(glXSwapBuffers)
|
|
|
|
LOAD_FUNCPTR(glXQueryExtension)
|
2005-04-28 20:29:12 +02:00
|
|
|
|
|
|
|
LOAD_FUNCPTR(glXGetFBConfigs)
|
|
|
|
LOAD_FUNCPTR(glXChooseFBConfig)
|
|
|
|
LOAD_FUNCPTR(glXGetFBConfigAttrib)
|
2005-09-26 13:04:12 +02:00
|
|
|
LOAD_FUNCPTR(glXCreateGLXPixmap)
|
|
|
|
LOAD_FUNCPTR(glXDestroyGLXPixmap)
|
2002-11-15 05:16:38 +01:00
|
|
|
#undef LOAD_FUNCPTR
|
|
|
|
|
|
|
|
wine_tsx11_lock();
|
2006-06-22 13:44:43 +02:00
|
|
|
if (pglXQueryExtension(gdi_display, &error_base, &event_base) == True) {
|
2002-11-15 05:16:38 +01:00
|
|
|
TRACE("GLX is up and running error_base = %d\n", error_base);
|
|
|
|
} else {
|
|
|
|
wine_dlclose(opengl_handle, NULL, 0);
|
|
|
|
opengl_handle = NULL;
|
|
|
|
}
|
|
|
|
wine_tsx11_unlock();
|
2005-06-29 21:28:06 +02:00
|
|
|
return (opengl_handle != NULL);
|
2002-11-15 05:16:38 +01:00
|
|
|
|
|
|
|
sym_not_found:
|
|
|
|
wine_dlclose(opengl_handle, NULL, 0);
|
|
|
|
opengl_handle = NULL;
|
2005-06-29 21:28:06 +02:00
|
|
|
return FALSE;
|
2002-11-15 05:16:38 +01:00
|
|
|
}
|
|
|
|
|
2006-08-27 23:10:32 +02:00
|
|
|
/* GLX can advertise dozens of different pixelformats including offscreen and onscreen ones.
|
|
|
|
* In our WGL implementation we only support a subset of these formats namely the format of
|
|
|
|
* Wine's main visual and offscreen formats (if they are available).
|
|
|
|
* This function converts a WGL format to its corresponding GLX one. It returns the index (zero-based)
|
|
|
|
* into the GLX FB config table and it returns the number of supported WGL formats in fmt_count.
|
|
|
|
*/
|
|
|
|
static BOOL ConvertPixelFormatWGLtoGLX(Display *display, int iPixelFormat, int *fmt_index, int *fmt_count)
|
2006-08-16 16:42:23 +02:00
|
|
|
{
|
2006-08-27 23:10:32 +02:00
|
|
|
int res = FALSE;
|
|
|
|
int i = 0;
|
|
|
|
GLXFBConfig* cfgs = NULL;
|
2006-08-16 16:42:23 +02:00
|
|
|
int nCfgs = 0;
|
|
|
|
int tmp_fmt_id = 0;
|
|
|
|
int tmp_vis_id = 0;
|
2006-08-27 23:10:32 +02:00
|
|
|
int nFormats = 1; /* Start at 1 as we allways have a main visual */
|
|
|
|
VisualID visualid = 0;
|
2006-08-16 16:42:23 +02:00
|
|
|
|
2006-08-27 23:10:32 +02:00
|
|
|
/* Request to look up the format of the main visual when iPixelFormat = 1 */
|
|
|
|
if(iPixelFormat == 1) visualid = XVisualIDFromVisual(visual);
|
2006-08-16 16:42:23 +02:00
|
|
|
|
2006-08-27 23:10:32 +02:00
|
|
|
/* As mentioned in various parts of the code only the format of the main visual can be used for onscreen rendering.
|
|
|
|
* Next to this format there are also so called offscreen rendering formats (used for pbuffers) which can be supported
|
|
|
|
* because they don't need a visual. Below we use glXGetFBConfigs instead of glXChooseFBConfig to enumerate the fb configurations
|
|
|
|
* bas this call lists both types of formats instead of only onscreen ones. */
|
|
|
|
cfgs = pglXGetFBConfigs(display, DefaultScreen(display), &nCfgs);
|
2006-08-16 16:42:23 +02:00
|
|
|
if (NULL == cfgs || 0 == nCfgs) {
|
2006-08-27 23:10:32 +02:00
|
|
|
ERR("glXChooseFBConfig returns NULL\n");
|
2006-08-16 16:42:23 +02:00
|
|
|
if(cfgs != NULL) XFree(cfgs);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-08-27 23:10:32 +02:00
|
|
|
/* Find the requested offscreen format and count the number of offscreen formats */
|
2006-08-16 16:42:23 +02:00
|
|
|
for(i=0; i<nCfgs; i++) {
|
2006-08-27 23:10:32 +02:00
|
|
|
pglXGetFBConfigAttrib(display, cfgs[i], GLX_VISUAL_ID, &tmp_vis_id);
|
|
|
|
pglXGetFBConfigAttrib(display, cfgs[i], GLX_FBCONFIG_ID, &tmp_fmt_id);
|
|
|
|
|
|
|
|
/* We are looking up the GLX index of our main visual and have found it :) */
|
|
|
|
if(iPixelFormat == 1 && visualid == tmp_vis_id) {
|
|
|
|
*fmt_index = i;
|
|
|
|
TRACE("Found FBCONFIG_ID 0x%x at index %d for VISUAL_ID 0x%x\n", tmp_fmt_id, *fmt_index, tmp_vis_id);
|
|
|
|
res = TRUE;
|
|
|
|
}
|
|
|
|
/* We found an offscreen rendering format :) */
|
|
|
|
else if(tmp_vis_id == 0) {
|
|
|
|
nFormats++;
|
|
|
|
TRACE("Checking offscreen format FBCONFIG_ID 0x%x at index %d\n", tmp_fmt_id, i);
|
|
|
|
|
|
|
|
if(iPixelFormat == nFormats) {
|
|
|
|
*fmt_index = i;
|
|
|
|
TRACE("Found offscreen format FBCONFIG_ID 0x%x corresponding to iPixelFormat %d at GLX index %d\n", tmp_fmt_id, iPixelFormat, i);
|
|
|
|
res = TRUE;
|
|
|
|
}
|
2006-08-16 16:42:23 +02:00
|
|
|
}
|
|
|
|
}
|
2006-08-27 23:10:32 +02:00
|
|
|
*fmt_count = nFormats;
|
|
|
|
TRACE("Number of offscreen formats: %d; returning index: %d\n", *fmt_count, *fmt_index);
|
2006-08-16 16:42:23 +02:00
|
|
|
|
|
|
|
if(cfgs != NULL) XFree(cfgs);
|
2006-08-27 23:10:32 +02:00
|
|
|
|
|
|
|
if(res == FALSE && iPixelFormat == 1)
|
|
|
|
ERR("Can't find a matching FBCONFIG_ID for VISUAL_ID 0x%lx!\n", visualid);
|
|
|
|
|
|
|
|
return res;
|
2006-08-16 16:42:23 +02:00
|
|
|
}
|
2000-05-12 22:18:14 +02:00
|
|
|
|
2005-04-28 20:29:12 +02:00
|
|
|
/**
|
|
|
|
* X11DRV_ChoosePixelFormat
|
|
|
|
*
|
|
|
|
* Equivalent of glXChooseVisual
|
|
|
|
*/
|
|
|
|
int X11DRV_ChoosePixelFormat(X11DRV_PDEVICE *physDev,
|
2000-05-12 22:18:14 +02:00
|
|
|
const PIXELFORMATDESCRIPTOR *ppfd) {
|
2005-04-28 20:29:12 +02:00
|
|
|
GLXFBConfig* cfgs = NULL;
|
|
|
|
int ret = 0;
|
2006-08-16 16:42:23 +02:00
|
|
|
int nCfgs = 0;
|
2006-08-27 23:10:32 +02:00
|
|
|
int value = 0;
|
2006-08-16 16:42:23 +02:00
|
|
|
int fmt_index = 0;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2005-06-29 21:28:06 +02:00
|
|
|
if (!has_opengl()) {
|
2002-11-15 05:16:38 +01:00
|
|
|
ERR("No libGL on this box - disabling OpenGL support !\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2006-08-16 16:42:23 +02:00
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
if (TRACE_ON(opengl)) {
|
2002-04-09 00:43:58 +02:00
|
|
|
TRACE("(%p,%p)\n", physDev, ppfd);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2004-11-30 22:38:57 +01:00
|
|
|
dump_PIXELFORMATDESCRIPTOR((const PIXELFORMATDESCRIPTOR *) ppfd);
|
2000-05-12 22:18:14 +02:00
|
|
|
}
|
|
|
|
|
2006-08-16 16:42:23 +02:00
|
|
|
wine_tsx11_lock();
|
|
|
|
if(!visual) {
|
|
|
|
ERR("Can't get an opengl visual!\n");
|
|
|
|
goto choose_exit;
|
2005-04-28 20:29:12 +02:00
|
|
|
}
|
2006-08-16 16:42:23 +02:00
|
|
|
|
|
|
|
/* Get a list containing all supported FB configurations */
|
|
|
|
cfgs = pglXChooseFBConfig(gdi_display, DefaultScreen(gdi_display), NULL, &nCfgs);
|
|
|
|
if (NULL == cfgs || 0 == nCfgs) {
|
|
|
|
ERR("glXChooseFBConfig returns NULL (glError: %d)\n", pglGetError());
|
|
|
|
goto choose_exit;
|
2005-12-02 11:24:52 +01:00
|
|
|
}
|
2006-08-16 16:42:23 +02:00
|
|
|
|
|
|
|
/* In case an fbconfig was found, check if it matches to the requirements of the ppfd */
|
2006-08-27 23:10:32 +02:00
|
|
|
if(!ConvertPixelFormatWGLtoGLX(gdi_display, 1 /* main visual */, &fmt_index, &value)) {
|
2006-08-16 16:42:23 +02:00
|
|
|
ERR("Can't find a matching FBCONFIG_ID for VISUAL_ID 0x%lx!\n", visual->visualid);
|
2005-12-02 11:24:52 +01:00
|
|
|
} else {
|
2006-08-16 16:42:23 +02:00
|
|
|
int dwFlags = 0;
|
|
|
|
int iPixelType = 0;
|
|
|
|
int value = 0;
|
|
|
|
|
|
|
|
/* Pixel type */
|
2006-08-27 23:10:32 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_RENDER_TYPE, &value);
|
2006-08-16 16:42:23 +02:00
|
|
|
if (value & GLX_RGBA_BIT)
|
|
|
|
iPixelType = PFD_TYPE_RGBA;
|
|
|
|
else
|
|
|
|
iPixelType = PFD_TYPE_COLORINDEX;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2006-08-16 16:42:23 +02:00
|
|
|
if (ppfd->iPixelType != iPixelType) {
|
|
|
|
goto choose_exit;
|
|
|
|
}
|
2005-04-28 20:29:12 +02:00
|
|
|
|
2006-08-16 16:42:23 +02:00
|
|
|
/* Doublebuffer */
|
2006-08-27 23:10:32 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_DOUBLEBUFFER, &value); if (value) dwFlags |= PFD_DOUBLEBUFFER;
|
2006-08-16 16:42:23 +02:00
|
|
|
if (!(ppfd->dwFlags & PFD_DOUBLEBUFFER_DONTCARE)) {
|
|
|
|
if ((ppfd->dwFlags & PFD_DOUBLEBUFFER) != (dwFlags & PFD_DOUBLEBUFFER)) {
|
|
|
|
goto choose_exit;
|
|
|
|
}
|
|
|
|
}
|
2005-04-28 20:29:12 +02:00
|
|
|
|
2006-08-16 16:42:23 +02:00
|
|
|
/* Stereo */
|
2006-08-27 23:10:32 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_STEREO, &value); if (value) dwFlags |= PFD_STEREO;
|
2006-08-16 16:42:23 +02:00
|
|
|
if (!(ppfd->dwFlags & PFD_STEREO_DONTCARE)) {
|
|
|
|
if ((ppfd->dwFlags & PFD_STEREO) != (dwFlags & PFD_STEREO)) {
|
|
|
|
goto choose_exit;
|
|
|
|
}
|
2005-12-02 11:24:52 +01:00
|
|
|
}
|
|
|
|
|
2006-08-16 16:42:23 +02:00
|
|
|
/* Alpha bits */
|
2006-08-27 23:10:32 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_ALPHA_SIZE, &value);
|
2006-08-16 16:42:23 +02:00
|
|
|
if (ppfd->iPixelType==PFD_TYPE_RGBA && ppfd->cAlphaBits && !value) {
|
2005-04-28 20:29:12 +02:00
|
|
|
goto choose_exit;
|
|
|
|
}
|
2006-08-16 16:42:23 +02:00
|
|
|
|
|
|
|
/* Depth bits */
|
2006-08-27 23:10:32 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_DEPTH_SIZE, &value);
|
2006-08-16 16:42:23 +02:00
|
|
|
if (ppfd->cDepthBits && !value) {
|
2005-04-28 20:29:12 +02:00
|
|
|
goto choose_exit;
|
|
|
|
}
|
2006-08-16 16:42:23 +02:00
|
|
|
|
|
|
|
/* Stencil bits */
|
2006-08-27 23:10:32 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_STENCIL_SIZE, &value);
|
2006-08-16 16:42:23 +02:00
|
|
|
if (ppfd->cStencilBits && !value) {
|
2005-04-28 20:29:12 +02:00
|
|
|
goto choose_exit;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2006-08-16 16:42:23 +02:00
|
|
|
/* Aux buffers */
|
2006-08-27 23:10:32 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_AUX_BUFFERS, &value);
|
2006-08-16 16:42:23 +02:00
|
|
|
if (ppfd->cAuxBuffers && !value) {
|
|
|
|
goto choose_exit;
|
2005-04-28 20:29:12 +02:00
|
|
|
}
|
2006-08-16 16:42:23 +02:00
|
|
|
|
|
|
|
/* When we pass all the checks we have found a matching format :) */
|
|
|
|
ret = 1;
|
|
|
|
TRACE("Succesfully found a matching mode, returning index: %d\n", ret);
|
2002-04-12 01:48:42 +02:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2005-04-28 20:29:12 +02:00
|
|
|
choose_exit:
|
2006-08-16 16:42:23 +02:00
|
|
|
if(!ret)
|
|
|
|
TRACE("No matching mode was found returning 0\n");
|
|
|
|
|
2005-04-28 20:29:12 +02:00
|
|
|
if (NULL != cfgs) XFree(cfgs);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
return ret;
|
2000-05-12 22:18:14 +02:00
|
|
|
}
|
|
|
|
|
2005-05-06 16:33:02 +02:00
|
|
|
/**
|
|
|
|
* X11DRV_DescribePixelFormat
|
|
|
|
*
|
|
|
|
* Get the pixel-format descriptor associated to the given id
|
|
|
|
*/
|
2002-04-09 00:43:58 +02:00
|
|
|
int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
|
2000-05-12 22:18:14 +02:00
|
|
|
int iPixelFormat,
|
|
|
|
UINT nBytes,
|
|
|
|
PIXELFORMATDESCRIPTOR *ppfd) {
|
2005-04-28 20:29:12 +02:00
|
|
|
/*XVisualInfo *vis;*/
|
2000-05-12 22:18:14 +02:00
|
|
|
int value;
|
|
|
|
int rb,gb,bb,ab;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2005-04-28 20:29:12 +02:00
|
|
|
GLXFBConfig* cfgs = NULL;
|
|
|
|
GLXFBConfig cur;
|
|
|
|
int nCfgs = 0;
|
|
|
|
int ret = 0;
|
2006-08-27 23:10:32 +02:00
|
|
|
int fmt_index = 0;
|
2005-04-28 20:29:12 +02:00
|
|
|
|
2005-06-29 21:28:06 +02:00
|
|
|
if (!has_opengl()) {
|
2002-11-15 05:16:38 +01:00
|
|
|
ERR("No libGL on this box - disabling OpenGL support !\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-04-09 00:43:58 +02:00
|
|
|
TRACE("(%p,%d,%d,%p)\n", physDev, iPixelFormat, nBytes, ppfd);
|
2002-05-24 23:14:16 +02:00
|
|
|
|
2005-04-28 20:29:12 +02:00
|
|
|
wine_tsx11_lock();
|
|
|
|
cfgs = pglXGetFBConfigs(gdi_display, DefaultScreen(gdi_display), &nCfgs);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
|
|
|
|
if (NULL == cfgs || 0 == nCfgs) {
|
|
|
|
ERR("unexpected iPixelFormat(%d), returns NULL\n", iPixelFormat);
|
|
|
|
return 0; /* unespected error */
|
|
|
|
}
|
|
|
|
|
2006-08-16 16:42:23 +02:00
|
|
|
/* This function allways reports the total number of supported pixel formats.
|
|
|
|
* At the moment we only support the pixel format corresponding to the main
|
|
|
|
* visual which got created at x11drv initialization. More formats could be
|
|
|
|
* supported if there was a way to recreate x11 windows in x11drv.
|
|
|
|
* Because we only support one format nCfgs needs to be set to 1.
|
|
|
|
*/
|
|
|
|
nCfgs = 1;
|
|
|
|
|
2002-05-24 23:14:16 +02:00
|
|
|
if (ppfd == NULL) {
|
|
|
|
/* The application is only querying the number of visuals */
|
2005-04-28 20:29:12 +02:00
|
|
|
wine_tsx11_lock();
|
|
|
|
if (NULL != cfgs) XFree(cfgs);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
return nCfgs;
|
2002-05-24 23:14:16 +02:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
if (nBytes < sizeof(PIXELFORMATDESCRIPTOR)) {
|
|
|
|
ERR("Wrong structure size !\n");
|
|
|
|
/* Should set error */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-03-13 14:06:14 +01:00
|
|
|
if (nCfgs < iPixelFormat || 1 > iPixelFormat) {
|
|
|
|
WARN("unexpected iPixelFormat(%d): not >=1 and <=nFormats(%d), returning NULL\n", iPixelFormat, nCfgs);
|
|
|
|
return 0;
|
2000-05-12 22:18:14 +02:00
|
|
|
}
|
2005-04-28 20:29:12 +02:00
|
|
|
|
2006-08-16 16:42:23 +02:00
|
|
|
/* Retrieve the index in the FBConfig table corresponding to the visual ID from the main visual */
|
2006-08-27 23:10:32 +02:00
|
|
|
if(!ConvertPixelFormatWGLtoGLX(gdi_display, iPixelFormat, &fmt_index, &value)) {
|
2006-08-16 16:42:23 +02:00
|
|
|
ERR("Can't find a valid pixel format index from the main visual, expect problems!\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-28 20:29:12 +02:00
|
|
|
ret = nCfgs;
|
2006-08-27 23:10:32 +02:00
|
|
|
cur = cfgs[fmt_index];
|
2000-05-12 22:18:14 +02:00
|
|
|
|
|
|
|
memset(ppfd, 0, sizeof(PIXELFORMATDESCRIPTOR));
|
|
|
|
ppfd->nSize = sizeof(PIXELFORMATDESCRIPTOR);
|
|
|
|
ppfd->nVersion = 1;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
/* These flags are always the same... */
|
2005-11-18 13:06:45 +01:00
|
|
|
ppfd->dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL;
|
|
|
|
/* Now the flags extracted from the Visual */
|
2005-04-28 20:29:12 +02:00
|
|
|
|
2002-09-25 02:29:56 +02:00
|
|
|
wine_tsx11_lock();
|
2005-04-28 20:29:12 +02:00
|
|
|
|
2005-11-18 13:06:45 +01:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur, GLX_CONFIG_CAVEAT, &value);
|
|
|
|
if(value == GLX_SLOW_CONFIG)
|
|
|
|
ppfd->dwFlags |= PFD_GENERIC_ACCELERATED;
|
|
|
|
|
2005-04-28 20:29:12 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur, GLX_DOUBLEBUFFER, &value); if (value) ppfd->dwFlags |= PFD_DOUBLEBUFFER;
|
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur, GLX_STEREO, &value); if (value) ppfd->dwFlags |= PFD_STEREO;
|
2000-05-12 22:18:14 +02:00
|
|
|
|
|
|
|
/* Pixel type */
|
2005-04-28 20:29:12 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur, GLX_RENDER_TYPE, &value);
|
|
|
|
if (value & GLX_RGBA_BIT)
|
2000-05-12 22:18:14 +02:00
|
|
|
ppfd->iPixelType = PFD_TYPE_RGBA;
|
|
|
|
else
|
|
|
|
ppfd->iPixelType = PFD_TYPE_COLORINDEX;
|
|
|
|
|
|
|
|
/* Color bits */
|
2005-04-28 20:29:12 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur, GLX_BUFFER_SIZE, &value);
|
2000-05-12 22:18:14 +02:00
|
|
|
ppfd->cColorBits = value;
|
|
|
|
|
|
|
|
/* Red, green, blue and alpha bits / shifts */
|
|
|
|
if (ppfd->iPixelType == PFD_TYPE_RGBA) {
|
2005-04-28 20:29:12 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur, GLX_RED_SIZE, &rb);
|
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur, GLX_GREEN_SIZE, &gb);
|
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur, GLX_BLUE_SIZE, &bb);
|
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur, GLX_ALPHA_SIZE, &ab);
|
2001-05-11 02:17:47 +02:00
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
ppfd->cRedBits = rb;
|
|
|
|
ppfd->cRedShift = gb + bb + ab;
|
|
|
|
ppfd->cBlueBits = bb;
|
|
|
|
ppfd->cBlueShift = ab;
|
|
|
|
ppfd->cGreenBits = gb;
|
|
|
|
ppfd->cGreenShift = bb + ab;
|
|
|
|
ppfd->cAlphaBits = ab;
|
|
|
|
ppfd->cAlphaShift = 0;
|
|
|
|
} else {
|
|
|
|
ppfd->cRedBits = 0;
|
|
|
|
ppfd->cRedShift = 0;
|
|
|
|
ppfd->cBlueBits = 0;
|
|
|
|
ppfd->cBlueShift = 0;
|
|
|
|
ppfd->cGreenBits = 0;
|
|
|
|
ppfd->cGreenShift = 0;
|
|
|
|
ppfd->cAlphaBits = 0;
|
|
|
|
ppfd->cAlphaShift = 0;
|
|
|
|
}
|
|
|
|
/* Accums : to do ... */
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
/* Depth bits */
|
2005-04-28 20:29:12 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur, GLX_DEPTH_SIZE, &value);
|
2000-05-12 22:18:14 +02:00
|
|
|
ppfd->cDepthBits = value;
|
2002-04-12 01:48:42 +02:00
|
|
|
|
|
|
|
/* stencil bits */
|
2005-04-28 20:29:12 +02:00
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur, GLX_STENCIL_SIZE, &value);
|
2002-04-12 01:48:42 +02:00
|
|
|
ppfd->cStencilBits = value;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2002-09-25 02:29:56 +02:00
|
|
|
wine_tsx11_unlock();
|
2000-05-12 22:18:14 +02:00
|
|
|
|
2002-04-12 01:48:42 +02:00
|
|
|
/* Aux : to do ... */
|
2000-05-12 22:18:14 +02:00
|
|
|
|
|
|
|
ppfd->iLayerType = PFD_MAIN_PLANE;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-05-15 00:53:17 +02:00
|
|
|
if (TRACE_ON(opengl)) {
|
|
|
|
dump_PIXELFORMATDESCRIPTOR(ppfd);
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2005-04-28 20:29:12 +02:00
|
|
|
wine_tsx11_lock();
|
|
|
|
if (NULL != cfgs) XFree(cfgs);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
|
|
|
|
return ret;
|
2000-05-12 22:18:14 +02:00
|
|
|
}
|
|
|
|
|
2005-05-06 16:33:02 +02:00
|
|
|
/**
|
|
|
|
* X11DRV_GetPixelFormat
|
|
|
|
*
|
|
|
|
* Get the pixel-format id used by this DC
|
|
|
|
*/
|
2002-04-09 00:43:58 +02:00
|
|
|
int X11DRV_GetPixelFormat(X11DRV_PDEVICE *physDev) {
|
|
|
|
TRACE("(%p): returns %d\n", physDev, physDev->current_pf);
|
2000-05-12 22:18:14 +02:00
|
|
|
|
|
|
|
return physDev->current_pf;
|
|
|
|
}
|
|
|
|
|
2005-05-06 16:33:02 +02:00
|
|
|
/**
|
|
|
|
* X11DRV_SetPixelFormat
|
|
|
|
*
|
|
|
|
* Set the pixel-format id used by this DC
|
|
|
|
*/
|
2002-04-09 00:43:58 +02:00
|
|
|
BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
|
2000-05-12 22:18:14 +02:00
|
|
|
int iPixelFormat,
|
|
|
|
const PIXELFORMATDESCRIPTOR *ppfd) {
|
2002-04-09 00:43:58 +02:00
|
|
|
TRACE("(%p,%d,%p)\n", physDev, iPixelFormat, ppfd);
|
2000-05-12 22:18:14 +02:00
|
|
|
|
2006-08-16 16:42:23 +02:00
|
|
|
/* At the moment we only support the pixelformat corresponding to the main
|
|
|
|
* x11drv visual which got created at x11drv initialization. More formats
|
|
|
|
* can be supported if there was a way to recreate x11 windows in x11drv
|
|
|
|
*/
|
|
|
|
if(iPixelFormat != 1) {
|
|
|
|
TRACE("Invalid iPixelFormat: %d\n", iPixelFormat);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
physDev->current_pf = iPixelFormat;
|
2005-11-11 11:52:14 +01:00
|
|
|
|
|
|
|
if (TRACE_ON(opengl)) {
|
|
|
|
int nCfgs_fmt = 0;
|
|
|
|
GLXFBConfig* cfgs_fmt = NULL;
|
|
|
|
GLXFBConfig cur_cfg;
|
|
|
|
int value;
|
|
|
|
int gl_test = 0;
|
2006-08-27 23:10:32 +02:00
|
|
|
int fmt_index = 0;
|
2005-12-06 11:33:33 +01:00
|
|
|
|
2006-08-27 23:10:32 +02:00
|
|
|
if(!ConvertPixelFormatWGLtoGLX(gdi_display, iPixelFormat, &fmt_index, &value)) {
|
2006-08-16 16:42:23 +02:00
|
|
|
ERR("Can't find a valid pixel format index from the main visual, expect problems!\n");
|
|
|
|
return TRUE; /* Return true because the SetPixelFormat stuff itself passed */
|
|
|
|
}
|
|
|
|
|
2005-12-06 11:33:33 +01:00
|
|
|
/*
|
|
|
|
* How to test if hdc current drawable is compatible (visual/FBConfig) ?
|
|
|
|
*
|
|
|
|
* in case of root window created HDCs we crash here :(
|
|
|
|
*
|
|
|
|
Drawable drawable = get_drawable( physDev->hdc );
|
|
|
|
TRACE(" drawable (%p,%p) have :\n", drawable, root_window);
|
|
|
|
pglXQueryDrawable(gdi_display, drawable, GLX_FBCONFIG_ID, (unsigned int*) &value);
|
|
|
|
TRACE(" - FBCONFIG_ID as 0x%x\n", tmp);
|
|
|
|
pglXQueryDrawable(gdi_display, drawable, GLX_VISUAL_ID, (unsigned int*) &value);
|
|
|
|
TRACE(" - VISUAL_ID as 0x%x\n", tmp);
|
|
|
|
pglXQueryDrawable(gdi_display, drawable, GLX_WIDTH, (unsigned int*) &value);
|
|
|
|
TRACE(" - WIDTH as %d\n", tmp);
|
|
|
|
pglXQueryDrawable(gdi_display, drawable, GLX_HEIGHT, (unsigned int*) &value);
|
|
|
|
TRACE(" - HEIGHT as %d\n", tmp);
|
|
|
|
*/
|
2005-11-11 11:52:14 +01:00
|
|
|
cfgs_fmt = pglXGetFBConfigs(gdi_display, DefaultScreen(gdi_display), &nCfgs_fmt);
|
2006-08-27 23:10:32 +02:00
|
|
|
cur_cfg = cfgs_fmt[fmt_index];
|
2005-11-11 11:52:14 +01:00
|
|
|
gl_test = pglXGetFBConfigAttrib(gdi_display, cur_cfg, GLX_FBCONFIG_ID, &value);
|
|
|
|
if (gl_test) {
|
|
|
|
ERR("Failed to retrieve FBCONFIG_ID from GLXFBConfig, expect problems.\n");
|
|
|
|
} else {
|
2005-12-06 11:33:33 +01:00
|
|
|
TRACE(" FBConfig have :\n");
|
|
|
|
TRACE(" - FBCONFIG_ID 0x%x\n", value);
|
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur_cfg, GLX_VISUAL_ID, &value);
|
|
|
|
TRACE(" - VISUAL_ID 0x%x\n", value);
|
|
|
|
pglXGetFBConfigAttrib(gdi_display, cur_cfg, GLX_DRAWABLE_TYPE, &value);
|
|
|
|
TRACE(" - DRAWABLE_TYPE 0x%x\n", value);
|
2005-11-11 11:52:14 +01:00
|
|
|
}
|
|
|
|
XFree(cfgs_fmt);
|
|
|
|
}
|
2000-05-12 22:18:14 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2006-06-23 13:13:55 +02:00
|
|
|
static XID create_glxpixmap(X11DRV_PDEVICE *physDev)
|
|
|
|
{
|
|
|
|
GLXPixmap ret;
|
|
|
|
XVisualInfo *vis;
|
|
|
|
XVisualInfo template;
|
|
|
|
int num;
|
|
|
|
|
|
|
|
wine_tsx11_lock();
|
|
|
|
|
2006-08-16 16:42:23 +02:00
|
|
|
/* Retrieve the visualid from our main visual which is the only visual we can use */
|
|
|
|
template.visualid = XVisualIDFromVisual(visual);
|
2006-06-23 13:13:55 +02:00
|
|
|
vis = XGetVisualInfo(gdi_display, VisualIDMask, &template, &num);
|
|
|
|
|
|
|
|
ret = pglXCreateGLXPixmap(gdi_display, vis, physDev->bitmap->pixmap);
|
|
|
|
XFree(vis);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
TRACE("return %lx\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
Drawable get_glxdrawable(X11DRV_PDEVICE *physDev)
|
|
|
|
{
|
|
|
|
Drawable ret;
|
|
|
|
|
|
|
|
if(physDev->bitmap)
|
|
|
|
{
|
|
|
|
if (physDev->bitmap->hbitmap == BITMAP_stock_phys_bitmap.hbitmap)
|
|
|
|
ret = physDev->drawable; /* PBuffer */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(!physDev->bitmap->glxpixmap)
|
|
|
|
physDev->bitmap->glxpixmap = create_glxpixmap(physDev);
|
|
|
|
ret = physDev->bitmap->glxpixmap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = physDev->drawable;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL destroy_glxpixmap(XID glxpixmap)
|
|
|
|
{
|
|
|
|
wine_tsx11_lock();
|
|
|
|
pglXDestroyGLXPixmap(gdi_display, glxpixmap);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2005-05-06 16:33:02 +02:00
|
|
|
/**
|
|
|
|
* X11DRV_SwapBuffers
|
|
|
|
*
|
|
|
|
* Swap the buffers of this DC
|
|
|
|
*/
|
2006-06-23 13:13:55 +02:00
|
|
|
BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev)
|
|
|
|
{
|
|
|
|
GLXDrawable drawable;
|
2005-06-29 21:28:06 +02:00
|
|
|
if (!has_opengl()) {
|
2002-11-15 05:16:38 +01:00
|
|
|
ERR("No libGL on this box - disabling OpenGL support !\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-03-25 13:07:23 +01:00
|
|
|
TRACE_(opengl)("(%p)\n", physDev);
|
2000-05-12 22:18:14 +02:00
|
|
|
|
2006-06-23 13:13:55 +02:00
|
|
|
drawable = get_glxdrawable(physDev);
|
2002-09-25 02:29:56 +02:00
|
|
|
wine_tsx11_lock();
|
2006-06-23 13:13:55 +02:00
|
|
|
pglXSwapBuffers(gdi_display, drawable);
|
2002-09-25 02:29:56 +02:00
|
|
|
wine_tsx11_unlock();
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2006-07-05 18:35:21 +02:00
|
|
|
/* FPS support */
|
|
|
|
if (TRACE_ON(fps))
|
|
|
|
{
|
|
|
|
static long prev_time, frames;
|
|
|
|
|
|
|
|
DWORD time = GetTickCount();
|
|
|
|
frames++;
|
|
|
|
/* every 1.5 seconds */
|
|
|
|
if (time - prev_time > 1500) {
|
|
|
|
TRACE_(fps)("@ approx %.2ffps\n", 1000.0*frames/(time - prev_time));
|
|
|
|
prev_time = time;
|
|
|
|
frames = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-09-25 02:29:56 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_setup_opengl_visual
|
|
|
|
*
|
|
|
|
* Setup the default visual used for OpenGL and Direct3D, and the desktop
|
|
|
|
* window (if it exists). If OpenGL isn't available, the visual is simply
|
|
|
|
* set to the default visual for the display
|
|
|
|
*/
|
|
|
|
XVisualInfo *X11DRV_setup_opengl_visual( Display *display )
|
|
|
|
{
|
|
|
|
XVisualInfo *visual = NULL;
|
2005-07-05 12:58:41 +02:00
|
|
|
/* In order to support OpenGL or D3D, we require a double-buffered visual and stencil buffer support, */
|
2006-06-01 18:40:16 +02:00
|
|
|
int dblBuf[] = {GLX_RGBA,GLX_DEPTH_SIZE, 24, GLX_STENCIL_SIZE, 8, GLX_ALPHA_SIZE, 8, GLX_DOUBLEBUFFER, None};
|
2005-06-29 21:28:06 +02:00
|
|
|
if (!has_opengl()) return NULL;
|
2005-07-05 12:58:41 +02:00
|
|
|
|
2002-09-25 02:29:56 +02:00
|
|
|
wine_tsx11_lock();
|
2005-08-03 13:01:15 +02:00
|
|
|
visual = pglXChooseVisual(display, DefaultScreen(display), dblBuf);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
if (visual == NULL) {
|
2006-06-01 18:40:16 +02:00
|
|
|
/* fallback to 16 bits depth, no alpha */
|
|
|
|
int dblBuf2[] = {GLX_RGBA,GLX_DEPTH_SIZE, 16, GLX_STENCIL_SIZE, 8, GLX_DOUBLEBUFFER, None};
|
|
|
|
WARN("Failed to get a visual with at least 24 bits depth\n");
|
2005-08-03 13:01:15 +02:00
|
|
|
|
|
|
|
wine_tsx11_lock();
|
|
|
|
visual = pglXChooseVisual(display, DefaultScreen(display), dblBuf2);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
if (visual == NULL) {
|
2006-06-01 18:40:16 +02:00
|
|
|
/* fallback to no stencil */
|
|
|
|
int dblBuf2[] = {GLX_RGBA,GLX_DEPTH_SIZE, 16, GLX_DOUBLEBUFFER, None};
|
|
|
|
WARN("Failed to get a visual with at least 8 bits of stencil\n");
|
|
|
|
|
|
|
|
wine_tsx11_lock();
|
|
|
|
visual = pglXChooseVisual(display, DefaultScreen(display), dblBuf2);
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
if (visual == NULL) {
|
|
|
|
/* This should only happen if we cannot find a match with a depth size 16 */
|
|
|
|
FIXME("Failed to find a suitable visual\n");
|
|
|
|
return visual;
|
|
|
|
}
|
2005-07-05 12:58:41 +02:00
|
|
|
}
|
|
|
|
}
|
2005-08-03 13:01:15 +02:00
|
|
|
TRACE("Visual ID %lx Chosen\n",visual->visualid);
|
2002-09-25 02:29:56 +02:00
|
|
|
return visual;
|
|
|
|
}
|
|
|
|
|
2002-11-15 05:16:38 +01:00
|
|
|
#else /* no OpenGL includes */
|
2000-05-12 22:18:14 +02:00
|
|
|
|
2002-11-18 20:50:02 +01:00
|
|
|
void X11DRV_OpenGL_Init(Display *display)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-11-27 21:21:24 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ChoosePixelFormat (X11DRV.@)
|
|
|
|
*/
|
2002-04-09 01:47:25 +02:00
|
|
|
int X11DRV_ChoosePixelFormat(X11DRV_PDEVICE *physDev,
|
2000-05-12 22:18:14 +02:00
|
|
|
const PIXELFORMATDESCRIPTOR *ppfd) {
|
|
|
|
ERR("No OpenGL support compiled in.\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-11-27 21:21:24 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* DescribePixelFormat (X11DRV.@)
|
|
|
|
*/
|
2002-04-09 01:47:25 +02:00
|
|
|
int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
|
2000-05-12 22:18:14 +02:00
|
|
|
int iPixelFormat,
|
|
|
|
UINT nBytes,
|
|
|
|
PIXELFORMATDESCRIPTOR *ppfd) {
|
|
|
|
ERR("No OpenGL support compiled in.\n");
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-11-27 21:21:24 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* GetPixelFormat (X11DRV.@)
|
|
|
|
*/
|
2002-04-09 01:47:25 +02:00
|
|
|
int X11DRV_GetPixelFormat(X11DRV_PDEVICE *physDev) {
|
2000-05-12 22:18:14 +02:00
|
|
|
ERR("No OpenGL support compiled in.\n");
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-11-27 21:21:24 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* SetPixelFormat (X11DRV.@)
|
|
|
|
*/
|
2002-04-09 01:47:25 +02:00
|
|
|
BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
|
2000-05-12 22:18:14 +02:00
|
|
|
int iPixelFormat,
|
|
|
|
const PIXELFORMATDESCRIPTOR *ppfd) {
|
|
|
|
ERR("No OpenGL support compiled in.\n");
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2002-11-27 21:21:24 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* SwapBuffers (X11DRV.@)
|
|
|
|
*/
|
2002-04-09 01:47:25 +02:00
|
|
|
BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev) {
|
2006-05-09 10:37:37 +02:00
|
|
|
ERR_(opengl)("No OpenGL support compiled in.\n");
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2002-09-25 02:29:56 +02:00
|
|
|
XVisualInfo *X11DRV_setup_opengl_visual( Display *display )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-06-23 13:13:55 +02:00
|
|
|
Drawable get_glxdrawable(X11DRV_PDEVICE *physDev)
|
2005-09-26 13:04:12 +02:00
|
|
|
{
|
2005-09-28 20:11:17 +02:00
|
|
|
return 0;
|
2005-09-26 13:04:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL destroy_glxpixmap(XID glxpixmap)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
#endif /* defined(HAVE_OPENGL) */
|