Changeset 135188 in webkit
- Timestamp:
- Nov 19, 2012, 12:58:56 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r135185 r135188 1 2012-11-19 Yael Aharon <yael.aharon@intel.com> 2 3 [EFL][TexMap] Complie error when considering warnings as errors 4 https://bugs.webkit.org/show_bug.cgi?id=102705 5 6 Reviewed by Kenneth Rohde Christiansen. 7 8 Change GaussianKernelHalfWidth to unsigned. 9 10 No new tests. 11 12 * platform/graphics/texmap/TextureMapperGL.cpp: 13 (WebCore): 14 1 15 2012-11-19 Sheriff Bot <webkit.review.bot@gmail.com> 2 16 -
trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGL.cpp
r135056 r135188 830 830 831 831 // Create a normal distribution of 21 values between -2 and 2. 832 static const intGaussianKernelHalfWidth = 11;832 static const unsigned GaussianKernelHalfWidth = 11; 833 833 static const float GaussianKernelStep = 0.2; 834 834
Note:
See TracChangeset
for help on using the changeset viewer.