Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: third_party/mesa/README.chromium

Issue 7074026: Fix mesa not checking for a valid depth in mesa's _mesa_TexSubImage3D (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/mesa/MesaLib/src/mesa/main/teximage.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 6
6 Description: 7 Description:
7 This directory contains a copy of these MesaLib components: 8 This directory contains a copy of these MesaLib components:
8 9
9 Main Mesa code src/mesa/ 10 Main Mesa code src/mesa/
10 Device drivers src/mesa/drivers/* 11 Device drivers src/mesa/drivers/*
11 Ext headers include/GL/glext.h 12 Ext headers include/GL/glext.h
12 include/GL/glxext.h 13 include/GL/glxext.h
13 SGI GLU library src/glu/sgi/ 14 SGI GLU library src/glu/sgi/
14 15
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 so that it can be compiled against standard EGL 1.4 headers. 77 so that it can be compiled against standard EGL 1.4 headers.
77 78
78 - Initialized uninitialized mask variable in eglconfig.c line 245. 79 - Initialized uninitialized mask variable in eglconfig.c line 245.
79 80
80 - 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
81 in eglapi.c line 276. Replaced void* with EGLNativeDisplayType. 82 in eglapi.c line 276. Replaced void* with EGLNativeDisplayType.
82 83
83 - Suppressed spurious compiler warning from gcc in eglCompareConfig by 84 - Suppressed spurious compiler warning from gcc in eglCompareConfig by
84 reorganizing the .h a little 85 reorganizing the .h a little
85 86
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
89 width > 0 && height > 0 && height > 0 . See
90 https://bugs.freedesktop.org/show_bug.cgi?id=37648
OLDNEW
« no previous file with comments | « third_party/mesa/MesaLib/src/mesa/main/teximage.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698