diff options
author | Tim Murray <timmurray@google.com> | 2014-10-14 20:09:10 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-10-14 20:09:11 +0000 |
commit | d430d72fea1b1d4165198d481863899ab261cf12 (patch) | |
tree | 530b2a5abbca3b7b5139c43914eb955f04c71476 | |
parent | b26ead533bb9d4e5e78f9a95fb543a577e7f95f2 (diff) | |
parent | 9f39aaf0145e9607200141e4716b73319055e6d7 (diff) | |
download | android_frameworks_rs-d430d72fea1b1d4165198d481863899ab261cf12.tar.gz android_frameworks_rs-d430d72fea1b1d4165198d481863899ab261cf12.tar.bz2 android_frameworks_rs-d430d72fea1b1d4165198d481863899ab261cf12.zip |
Merge "Fix rsDebug issues with compat lib and long/long long changes." into lmp-dev
-rw-r--r-- | driver/rsdRuntimeStubs.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/driver/rsdRuntimeStubs.cpp b/driver/rsdRuntimeStubs.cpp index 883d7d27..5f6f3e14 100644 --- a/driver/rsdRuntimeStubs.cpp +++ b/driver/rsdRuntimeStubs.cpp @@ -1953,6 +1953,31 @@ void rsDebug(const char *s, const ul4 *c) { SC_debugUL4(s, *(const ulong4 *)c); } +void rsDebug(const char *s, const long2 c) { + SC_debugL2(s, c); +} + +void rsDebug(const char *s, const long3 c) { + SC_debugL3(s, c); +} + +void rsDebug(const char *s, const long4 c) { + SC_debugL4(s, c); +} + +void rsDebug(const char *s, const ulong2 c) { + SC_debugUL2(s, c); +} + +void rsDebug(const char *s, const ulong3 c) { + SC_debugUL3(s, c); +} + +void rsDebug(const char *s, const ulong4 c) { + SC_debugUL4(s, c); +} + + void rsDebug(const char *s, const void *p) { SC_debugP(s, p); } |