summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-19 00:36:24 +0000
committersehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-19 00:36:24 +0000
commitbfc7b586379bb03cd4a792d500800c107885ab94 (patch)
tree3aec9300a40cbd13d4e500c74558ba39aaa7ae7d
parentbc39ed59a2b165ea4a5e2bc4ea337da7c0f85d3a (diff)
downloadchromium_src-bfc7b586379bb03cd4a792d500800c107885ab94.zip
chromium_src-bfc7b586379bb03cd4a792d500800c107885ab94.tar.gz
chromium_src-bfc7b586379bb03cd4a792d500800c107885ab94.tar.bz2
Stub out a define GPU_LOG and GPU_CHECK for native client builds.
Review URL: http://codereview.chromium.org/1141002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42043 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--gpu/command_buffer/common/logging.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gpu/command_buffer/common/logging.h b/gpu/command_buffer/common/logging.h
index 92ea0aca..83f3245 100644
--- a/gpu/command_buffer/common/logging.h
+++ b/gpu/command_buffer/common/logging.h
@@ -24,6 +24,8 @@
#else
#include <sstream>
+#define GPU_LOG LOG
+#define GPU_CHECK CHECK
// TODO: implement logging through nacl's debug service runtime if
// available.
#define CHECK(X) do {} while (0)