Changeset 135188 in webkit


Ignore:
Timestamp:
Nov 19, 2012, 12:58:56 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

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

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

Change GaussianKernelHalfWidth to unsigned.

No new tests.

  • platform/graphics/texmap/TextureMapperGL.cpp:

(WebCore):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r135185 r135188  
     12012-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
    1152012-11-19  Sheriff Bot  <webkit.review.bot@gmail.com>
    216
  • trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGL.cpp

    r135056 r135188  
    830830
    831831// Create a normal distribution of 21 values between -2 and 2.
    832 static const int GaussianKernelHalfWidth = 11;
     832static const unsigned GaussianKernelHalfWidth = 11;
    833833static const float GaussianKernelStep = 0.2;
    834834
Note: See TracChangeset for help on using the changeset viewer.