mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
848 B

  1. w/ XFree86 Radeon hardware acceleration (at least on iBook) the
  2. NV extension does produce major pixel garbage.
  3. - Rene Rebe <rene@rocklinux.org>
  4. --- evas-2004-02-25/src/lib/engines/gl_common/evas_gl_context.c.orig 2004-02-27 03:12:11.000000000 +0100
  5. +++ evas-2004-02-25/src/lib/engines/gl_common/evas_gl_context.c 2004-02-27 03:12:49.000000000 +0100
  6. @@ -64,7 +64,7 @@
  7. if (ext)
  8. {
  9. if (strstr(ext, "GL_SGIS_generate_mipmap")) gc->ext.sgis_generate_mipmap = 1;
  10. - if (strstr(ext, "GL_NV_texture_rectangle")) gc->ext.nv_texture_rectangle = 1;
  11. + if (strstr(ext, "GL_NV_texture_rectangle")) gc->ext.nv_texture_rectangle = 0;
  12. /* technically this should work, as its a compatible */
  13. /* implementation of the nvidia texture_rectangle extension */
  14. /* since the #define value is the same as is the description */