Changeset 155189 in webkit


Ignore:
Timestamp:
Sep 6, 2013 9:03:22 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[Win][WebGL] WebGL rendering is slow.
https://bugs.webkit.org/show_bug.cgi?id=120841

Patch by peavo@outlook.com <peavo@outlook.com> on 2013-09-06
Reviewed by Brent Fulgham.

Rendering WebGL content is slow on Windows, because lots of debug information is written to debug.txt.

  • ANGLE.vcxproj/ANGLERelease.props: Disable logging in release builds.
Location:
trunk/Source/ThirdParty/ANGLE
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/ThirdParty/ANGLE/ANGLE.vcxproj/ANGLERelease.props

    r153732 r155189  
    77    <ClCompile>
    88      <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
    9     </ClCompile>
    10   </ItemDefinitionGroup>
    11   <ItemDefinitionGroup>
    12     <ClCompile>
    139      <IntrinsicFunctions>true</IntrinsicFunctions>
    14     </ClCompile>
    15   </ItemDefinitionGroup>
    16   <ItemDefinitionGroup>
    17     <ClCompile>
    1810      <WholeProgramOptimization>true</WholeProgramOptimization>
     11      <PreprocessorDefinitions>ANGLE_DISABLE_TRACE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    1912    </ClCompile>
    2013  </ItemDefinitionGroup>
  • trunk/Source/ThirdParty/ANGLE/ChangeLog

    r155172 r155189  
     12013-09-06  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [Win][WebGL] WebGL rendering is slow.
     4        https://bugs.webkit.org/show_bug.cgi?id=120841
     5
     6        Reviewed by Brent Fulgham.
     7
     8        Rendering WebGL content is slow on Windows, because lots of debug information is written to debug.txt.
     9
     10        * ANGLE.vcxproj/ANGLERelease.props: Disable logging in release builds.
     11
    1122013-09-05  Dan Bernstein  <mitz@apple.com>
    213
Note: See TracChangeset for help on using the changeset viewer.