OLD | NEW |
1 Name: mesa | 1 Name: mesa |
2 Version: 7.9 | 2 Version: 7.9 |
3 URL: http://www.mesa3d.org/ | 3 URL: http://www.mesa3d.org/ |
4 License File: MesaLib/docs/COPYING | 4 License File: MesaLib/docs/COPYING |
5 Security Critical: Yes | 5 Security Critical: Yes |
6 | 6 |
7 Description: | 7 Description: |
8 This directory contains a copy of these MesaLib components: | 8 This directory contains a copy of these MesaLib components: |
9 | 9 |
10 Main Mesa code src/mesa/ | 10 Main Mesa code src/mesa/ |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 - Fixed compiler warning about cast to pointer from integer of different size | 81 - Fixed compiler warning about cast to pointer from integer of different size |
82 in eglapi.c line 276. Replaced void* with EGLNativeDisplayType. | 82 in eglapi.c line 276. Replaced void* with EGLNativeDisplayType. |
83 | 83 |
84 - Suppressed spurious compiler warning from gcc in eglCompareConfig by | 84 - Suppressed spurious compiler warning from gcc in eglCompareConfig by |
85 reorganizing the .h a little | 85 reorganizing the .h a little |
86 | 86 |
87 - Corrected the comparison in src/mesa/main/teximage.c line 2801 to check | 87 - Corrected the comparison in src/mesa/main/teximage.c line 2801 to check |
88 if width > 0 && height > 0 && depth > 0, instead of checking | 88 if width > 0 && height > 0 && depth > 0, instead of checking |
89 width > 0 && height > 0 && height > 0 . See | 89 width > 0 && height > 0 && height > 0 . See |
90 https://bugs.freedesktop.org/show_bug.cgi?id=37648 | 90 https://bugs.freedesktop.org/show_bug.cgi?id=37648 |
| 91 |
| 92 - Suppressed (accurate) compiler warnings about return type conflicts |
| 93 from gl_apinop.c. |
| 94 http://code.google.com/p/chromium/issues/detail?id=92568 |
| 95 https://bugs.freedesktop.org/show_bug.cgi?id=40028 |
OLD | NEW |