diff -u compiz-0.8.4/debian/changelog compiz-0.8.4/debian/changelog --- compiz-0.8.4/debian/changelog +++ compiz-0.8.4/debian/changelog @@ -1,3 +1,9 @@ +compiz (1:0.8.4-0ubuntu16~ickle) lucid; urgency=low + + * Fix texture comparison off-by-one for ickle to test. + + -- Robert Hooker Fri, 04 Jun 2010 16:22:40 -0400 + compiz (1:0.8.4-0ubuntu15) lucid; urgency=low * debian/patches/060_move_checks_to_compiz.patch: diff -u compiz-0.8.4/debian/patches/060_move_checks_to_compiz.patch compiz-0.8.4/debian/patches/060_move_checks_to_compiz.patch --- compiz-0.8.4/debian/patches/060_move_checks_to_compiz.patch +++ compiz-0.8.4/debian/patches/060_move_checks_to_compiz.patch @@ -226,7 +226,7 @@ CompFBConfig *config = &screen->glxPixmapFBConfigs[depth]; int attribs[7], i = 0; -+ if (width >= screen->maxTextureSize || height >= screen->maxTextureSize) ++ if (width > screen->maxTextureSize || height > screen->maxTextureSize) + { + compLogMessage ("core", CompLogLevelWarn, + "Exceeded max texture size");