Displaying 1 result from an estimated 1 matches for "glx_bind_to_mipmap_texture_ext".
2006 Dec 04
1
(no subject)
...nfortunately 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
with the new i915tex module is that FBOs are supported, but t...