summaryrefslogtreecommitdiff
path: root/scriptc/rs_debug.rsh
diff options
context:
space:
mode:
authorJean-Luc Brouillet <jeanluc@google.com>2015-04-03 14:39:53 -0700
committerJean-Luc Brouillet <jeanluc@google.com>2015-04-03 17:15:25 -0700
commit20b27d602a4778ed50a83df2147416a35b7c92be (patch)
tree35184da58f7faf245ebe159434240d73f506202d /scriptc/rs_debug.rsh
parentbfc8ef78572e49b13b8e5335fd0ca00c90f763da (diff)
downloadrs-20b27d602a4778ed50a83df2147416a35b7c92be.tar.gz
Improve the documentation of the RenderScript API.
Only the explanations should be changing. Change-Id: I889b366e3be44f5ac7f44a199e4b9a47353665e2
Diffstat (limited to 'scriptc/rs_debug.rsh')
-rw-r--r--scriptc/rs_debug.rsh14
1 files changed, 9 insertions, 5 deletions
diff --git a/scriptc/rs_debug.rsh b/scriptc/rs_debug.rsh
index d52590ea..348c598f 100644
--- a/scriptc/rs_debug.rsh
+++ b/scriptc/rs_debug.rsh
@@ -17,11 +17,10 @@
// Don't edit this file! It is auto-generated by frameworks/rs/api/generate.sh.
/*
- * rs_debug.rsh: Utility debugging routines
+ * rs_debug.rsh: Debugging Functions
*
- * Routines intended to be used during application developement. These should
- * not be used in shipping applications. All print a string and value pair to
- * the standard log.
+ * The functions below are intended to be used during application developement.
+ * They should not be used in shipping applications.
*/
#ifndef RENDERSCRIPT_RS_DEBUG_RSH
@@ -31,7 +30,12 @@
#define RS_DEBUG_MARKER rsDebug(__FILE__, __LINE__)
/*
- * Debug function. Prints a string and value to the log.
+ * rsDebug: Log a message and values
+ *
+ * This function prints a message to the standard log, followed by the provided values.
+ *
+ * This function is intended for debugging only and should not be used in shipping
+ * applications.
*/
extern void __attribute__((overloadable))
rsDebug(const char* message, double a);