| 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/ |
| 11 Device drivers src/mesa/drivers/* | 11 Device drivers src/mesa/drivers/* |
| 12 Ext headers include/GL/glext.h | 12 Ext headers include/GL/glext.h |
| 13 include/GL/glxext.h | 13 include/GL/glxext.h |
| 14 SGI GLU library src/glu/sgi/ | 14 SGI GLU library src/glu/sgi/ |
| 15 | 15 |
| 16 The license is in MesaLib/docs/license.html. | 16 The license is in MesaLib/docs/license.html. |
| 17 | 17 |
| 18 Modifications made with initial commit: | 18 Modifications made with initial commit: |
| 19 - Converted to utf-8 with: vim +"argdo write ++enc=utf-8" *.c |
| 20 |
| 19 - Added the file README.chromium (this file) | 21 - Added the file README.chromium (this file) |
| 20 | 22 |
| 21 Later modifications (see chromium.patch): | 23 Later modifications (see chromium.patch): |
| 22 - Added OSMesaGetProcAddress to MesaLib/src/mesa/drivers/osmesa/osmesa.def | 24 - Added OSMesaGetProcAddress to MesaLib/src/mesa/drivers/osmesa/osmesa.def |
| 23 | 25 |
| 24 - Added #pragma optimize('', off) to: | 26 - Added #pragma optimize('', off) to: |
| 25 - MesaLib\src\mesa\main\histogram.c | 27 - MesaLib\src\mesa\main\histogram.c |
| 26 - MesaLib\src\mesa\main\image.c | 28 - MesaLib\src\mesa\main\image.c |
| 27 - MesaLib\src\mesa\main\mipmap.c | 29 - MesaLib\src\mesa\main\mipmap.c |
| 28 - MesaLib\src\mesa\math\m_eval.c | 30 - MesaLib\src\mesa\math\m_eval.c |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 88 |
| 87 - Corrected the comparison in src/mesa/main/teximage.c line 2801 to check | 89 - Corrected the comparison in src/mesa/main/teximage.c line 2801 to check |
| 88 if width > 0 && height > 0 && depth > 0, instead of checking | 90 if width > 0 && height > 0 && depth > 0, instead of checking |
| 89 width > 0 && height > 0 && height > 0 . See | 91 width > 0 && height > 0 && height > 0 . See |
| 90 https://bugs.freedesktop.org/show_bug.cgi?id=37648 | 92 https://bugs.freedesktop.org/show_bug.cgi?id=37648 |
| 91 | 93 |
| 92 - Suppressed (accurate) compiler warnings about return type conflicts | 94 - Suppressed (accurate) compiler warnings about return type conflicts |
| 93 from gl_apinop.c. | 95 from gl_apinop.c. |
| 94 http://code.google.com/p/chromium/issues/detail?id=92568 | 96 http://code.google.com/p/chromium/issues/detail?id=92568 |
| 95 https://bugs.freedesktop.org/show_bug.cgi?id=40028 | 97 https://bugs.freedesktop.org/show_bug.cgi?id=40028 |
| OLD | NEW |