summaryrefslogtreecommitdiff
path: root/rs.h
diff options
context:
space:
mode:
authorTim Murray <timmurray@google.com>2013-11-19 14:02:38 -0800
committerTim Murray <timmurray@google.com>2013-11-19 14:02:38 -0800
commit0a8ec2cbc3a2c267590af89e60c2a64e15c8bf13 (patch)
tree9216ccdea95d3dfe9bbc05b5e06d46777317f63c /rs.h
parentba5ed6abcf3044a88df46ccc9ccdb76511a12ce5 (diff)
downloadrs-0a8ec2cbc3a2c267590af89e60c2a64e15c8bf13.tar.gz
Update rs.h for 64-bit.
bug 11332320 Change-Id: I4062e275013015f9dbbcc453ddcc269bab3a9409
Diffstat (limited to 'rs.h')
-rw-r--r--rs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/rs.h b/rs.h
index 566d9eaf..e31762d9 100644
--- a/rs.h
+++ b/rs.h
@@ -45,10 +45,10 @@ extern "C" {
// Allocation update
const void* rsaAllocationGetType(RsContext con, RsAllocation va);
// Type update
- void rsaTypeGetNativeData(RsContext, RsType, uint32_t *typeData, uint32_t typeDataSize);
+ void rsaTypeGetNativeData(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSize);
// Element update
- void rsaElementGetNativeData(RsContext, RsElement, uint32_t *elemData, uint32_t elemDataSize);
- void rsaElementGetSubElements(RsContext, RsElement, uint32_t *ids, const char **names,
+ void rsaElementGetNativeData(RsContext, RsElement, uintptr_t *elemData, uint32_t elemDataSize);
+ void rsaElementGetSubElements(RsContext, RsElement, uintptr_t *ids, const char **names,
uint32_t *arraySizes, uint32_t dataSize);
RsDevice rsDeviceCreate();