summaryrefslogtreecommitdiffstats
path: root/o3d
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-10 23:01:20 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-10 23:01:20 +0000
commit42ff47b781b72643d2c5a2c4fe2159b4c3e20347 (patch)
tree091ea301fdd6bdb3ae280f015571bfb4a0da11b6 /o3d
parent0fcfb2a1252c8665c8078aa1ccd94b5153a92f18 (diff)
downloadchromium_src-42ff47b781b72643d2c5a2c4fe2159b4c3e20347.zip
chromium_src-42ff47b781b72643d2c5a2c4fe2159b4c3e20347.tar.gz
chromium_src-42ff47b781b72643d2c5a2c4fe2159b4c3e20347.tar.bz2
Change #ifdef _DEBUG test to #ifndef NDEBUG test.
BUG=None TEST=trybots Review URL: http://codereview.chromium.org/5991010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70956 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d')
-rw-r--r--o3d/breakpad/linux/breakpad.cc2
-rw-r--r--o3d/core/cross/gl/renderer_gl.cc2
-rw-r--r--o3d/core/cross/gles2/renderer_gles2.cc8
-rw-r--r--o3d/core/cross/types.h2
-rw-r--r--o3d/import/cross/archive_processor.h2
5 files changed, 8 insertions, 8 deletions
diff --git a/o3d/breakpad/linux/breakpad.cc b/o3d/breakpad/linux/breakpad.cc
index 4ef9bc3..6fec736 100644
--- a/o3d/breakpad/linux/breakpad.cc
+++ b/o3d/breakpad/linux/breakpad.cc
@@ -48,7 +48,7 @@ static const std::string kBreakpadProduct = "Google_O3D_Plugin_Linux";
static const std::string kBreakpadVersion = "unknown";
static const std::string kBreakpadGUID = "unknown";
static const std::string kBreakpadEmail = "unknown";
-#ifdef _DEBUG
+#ifndef NDEBUG
static const std::string kBreakpadServer =
"http://clients2.google.com/cr/staging_report";
#else
diff --git a/o3d/core/cross/gl/renderer_gl.cc b/o3d/core/cross/gl/renderer_gl.cc
index c3bef52..098f724 100644
--- a/o3d/core/cross/gl/renderer_gl.cc
+++ b/o3d/core/cross/gl/renderer_gl.cc
@@ -176,7 +176,7 @@ GLenum ConvertStencilOp(State::StencilOperation stencil_func) {
// to the context.
bool InstallFramebufferObjects(const RenderSurface* surface,
const RenderDepthStencilSurface* surface_depth) {
-#ifdef _DEBUG
+#ifndef NDEBUG
GLint bound_framebuffer;
::glGetIntegerv(GL_FRAMEBUFFER_BINDING_EXT, &bound_framebuffer);
DCHECK(bound_framebuffer != 0);
diff --git a/o3d/core/cross/gles2/renderer_gles2.cc b/o3d/core/cross/gles2/renderer_gles2.cc
index 616267c..47939c5 100644
--- a/o3d/core/cross/gles2/renderer_gles2.cc
+++ b/o3d/core/cross/gles2/renderer_gles2.cc
@@ -184,7 +184,7 @@ GLenum ConvertStencilOp(State::StencilOperation stencil_func) {
// to the context.
bool InstallFramebufferObjects(const RenderSurface* surface,
const RenderDepthStencilSurface* surface_depth) {
-#ifdef _DEBUG
+#ifndef NDEBUG
GLint bound_framebuffer;
::glGetIntegerv(GL_FRAMEBUFFER_BINDING, &bound_framebuffer);
DCHECK(bound_framebuffer != 0);
@@ -847,9 +847,9 @@ LRESULT CALLBACK IntermediateWindowProc(HWND window,
Renderer::InitStatus GetWindowsPixelFormat(HWND window,
Features* features,
int* pixel_format) {
- // We must initialize a GLES2 context before we can determine the multi-sampling
- // supported on the current hardware, so we create an intermediate window
- // and context here.
+ // We must initialize a GLES2 context before we can determine the
+ // multi-sampling supported on the current hardware, so we create an
+ // intermediate window and context here.
HINSTANCE module_handle;
if (!::GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT |
GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
diff --git a/o3d/core/cross/types.h b/o3d/core/cross/types.h
index 7971ceb..791410c 100644
--- a/o3d/core/cross/types.h
+++ b/o3d/core/cross/types.h
@@ -54,7 +54,7 @@
#include "core/cross/float_n.h"
// Defines ---------------------------------
-#ifdef _DEBUG
+#ifndef NDEBUG
#define O3D_ASSERT(x) assert((x))
#else
#define O3D_ASSERT(x)
diff --git a/o3d/import/cross/archive_processor.h b/o3d/import/cross/archive_processor.h
index d404249..5e55a24 100644
--- a/o3d/import/cross/archive_processor.h
+++ b/o3d/import/cross/archive_processor.h
@@ -89,7 +89,7 @@ class ArchiveProcessor: public StreamProcessor {
DISALLOW_COPY_AND_ASSIGN(ArchiveProcessor);
};
-#ifdef _DEBUG
+#ifndef NDEBUG
// For debugging, report a zlib or i/o error
extern void zerr(int result);
#endif