diff options
| author | Jason Maskell <[email protected]> | 2016-05-31 13:54:29 +0200 |
|---|---|---|
| committer | Jason Maskell <[email protected]> | 2016-05-31 13:54:29 +0200 |
| commit | 9d4bad02e6eb15ec5cf62681923543776d66e9f1 (patch) | |
| tree | 1f64f36d04a518a1369ce9e34ba30b0debea1b9f /sample/d3d11/ocean_surface.cpp | |
| parent | Added support for RFC 104, the logging interface: https://docs.google.com/doc... (diff) | |
| download | waveworks_archive-9d4bad02e6eb15ec5cf62681923543776d66e9f1.tar.xz waveworks_archive-9d4bad02e6eb15ec5cf62681923543776d66e9f1.zip | |
Renamed Logger.h to GFSDK_Logger.h since it's a shared header.
Removed the narrow char methods.
Removed the floating log functions.
Changed the ILogger::log() method to use varargs and printf() formatting.
Diffstat (limited to 'sample/d3d11/ocean_surface.cpp')
| -rw-r--r-- | sample/d3d11/ocean_surface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sample/d3d11/ocean_surface.cpp b/sample/d3d11/ocean_surface.cpp index 3bf11c8..a880db3 100644 --- a/sample/d3d11/ocean_surface.cpp +++ b/sample/d3d11/ocean_surface.cpp @@ -31,7 +31,7 @@ #include "ocean_surface.h" #include "GFSDK_WaveWorks_D3D_Util.h" -#include "../common/Logger.h" +#include "GFSDK_Logger.h" #include "../common/LoggerImpl.h" #pragma warning(disable:4127) @@ -73,7 +73,7 @@ OceanSurface::~OceanSurface() HRESULT OceanSurface::initQuadTree(const GFSDK_WaveWorks_Quadtree_Params& params) { - NV_LOG("Initing the QuadTree"); + NV_LOG(L"Initing the QuadTree"); if(NULL == m_hOceanQuadTree) { |