Title: [135188] trunk/Source/WebCore
Revision
135188
Author
commit-qu...@webkit.org
Date
2012-11-19 12:58:56 -0800 (Mon, 19 Nov 2012)

Log Message

[EFL][TexMap] Complie error when considering warnings as errors
https://bugs.webkit.org/show_bug.cgi?id=102705

Patch by Yael Aharon <yael.aha...@intel.com> on 2012-11-19
Reviewed by Kenneth Rohde Christiansen.

Change GaussianKernelHalfWidth to unsigned.

No new tests.

* platform/graphics/texmap/TextureMapperGL.cpp:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (135187 => 135188)


--- trunk/Source/WebCore/ChangeLog	2012-11-19 20:43:38 UTC (rev 135187)
+++ trunk/Source/WebCore/ChangeLog	2012-11-19 20:58:56 UTC (rev 135188)
@@ -1,3 +1,17 @@
+2012-11-19  Yael Aharon  <yael.aha...@intel.com>
+
+        [EFL][TexMap] Complie error when considering warnings as errors
+        https://bugs.webkit.org/show_bug.cgi?id=102705
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Change GaussianKernelHalfWidth to unsigned.
+
+        No new tests.
+
+        * platform/graphics/texmap/TextureMapperGL.cpp:
+        (WebCore):
+
 2012-11-19  Sheriff Bot  <webkit.review....@gmail.com>
 
         Unreviewed, rolling out r134830.

Modified: trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGL.cpp (135187 => 135188)


--- trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGL.cpp	2012-11-19 20:43:38 UTC (rev 135187)
+++ trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGL.cpp	2012-11-19 20:58:56 UTC (rev 135188)
@@ -829,7 +829,7 @@
 }
 
 // Create a normal distribution of 21 values between -2 and 2.
-static const int GaussianKernelHalfWidth = 11;
+static const unsigned GaussianKernelHalfWidth = 11;
 static const float GaussianKernelStep = 0.2;
 
 static inline float gauss(float x)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to