Changeset 56785 in webkit


Ignore:
Timestamp:
Mar 30, 2010 7:13:12 AM (14 years ago)
Author:
Adam Roben
Message:

Enable extra Direct3D debugging information in Debug builds

This makes it easier to track down memory leaks and misuses of the D3D
APIs in Debug builds.

Fixes <http://webkit.org/b/36820>

Reviewed by John Sullivan.

  • platform/graphics/win/WKCACFLayerRenderer.cpp: Define D3D_DEBUG_INFO

in Debug builds before #including d3d9.h so that extra D3D debugging
information will be enabled.

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r56784 r56785  
     12010-03-30  Adam Roben  <aroben@apple.com>
     2
     3        Enable extra Direct3D debugging information in Debug builds
     4
     5        This makes it easier to track down memory leaks and misuses of the D3D
     6        APIs in Debug builds.
     7
     8        Fixes <http://webkit.org/b/36820>
     9
     10        Reviewed by John Sullivan.
     11
     12        * platform/graphics/win/WKCACFLayerRenderer.cpp: Define D3D_DEBUG_INFO
     13        in Debug builds before #including d3d9.h so that extra D3D debugging
     14        information will be enabled.
     15
    1162010-03-30  Luiz Agostini  <luiz.agostini@openbossa.org>
    217
  • trunk/WebCore/platform/graphics/win/WKCACFLayerRenderer.cpp

    r55941 r56785  
    2828#if USE(ACCELERATED_COMPOSITING)
    2929
     30#ifndef NDEBUG
     31#define D3D_DEBUG_INFO
     32#endif
     33
    3034#include "WKCACFLayerRenderer.h"
    3135
Note: See TracChangeset for help on using the changeset viewer.