search for: getfbconfigattrib

Displaying 1 result from an estimated 1 matches for "getfbconfigattrib".

2006 Dec 04
1
(no subject)
...w DRM memory manager and finally succeeded. Unfortunately it seems to break compiz which errors out complaining that there are no GLXFBConfigs for the default depth. I was able to trace the problem to the following block of code in src/screen.c, starting on line 1897: if (s->fbo) { (*s->getFBConfigAttrib) (dpy, fbConfigs[j], GLX_BIND_TO_MIPMAP_TEXTURE_EXT, &value); if (value < mipmap) continue; mipmap = value; } From what I understand the contents of the if block where never executed when running with the i915 DRI module because it didn't support FBOs. The problem wit...