diff options
| author | Jason Sams <jsams@google.com> | 2013-08-07 13:02:32 -0700 |
|---|---|---|
| committer | Jason Sams <jsams@google.com> | 2013-08-07 13:02:32 -0700 |
| commit | ddceab9a001f07a3395226c5e06e3b420720af0f (patch) | |
| tree | 1ad02205c75ba84552509c3748fb68d28b5b2a91 /driver/rsdRuntimeStubs.cpp | |
| parent | 126adc5dee94b157b0040ab3c543af02d4277990 (diff) | |
| download | android_frameworks_rs-ddceab9a001f07a3395226c5e06e3b420720af0f.tar.gz android_frameworks_rs-ddceab9a001f07a3395226c5e06e3b420720af0f.tar.bz2 android_frameworks_rs-ddceab9a001f07a3395226c5e06e3b420720af0f.zip | |
Refactor hal to remove cpuConsumer from drivers
This CL should minimize build breaks due to
BufferQueue changes in the future.
Change-Id: I565a6eae5cc25603741fef32f2cfcb31a32eb757
Diffstat (limited to 'driver/rsdRuntimeStubs.cpp')
| -rw-r--r-- | driver/rsdRuntimeStubs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/rsdRuntimeStubs.cpp b/driver/rsdRuntimeStubs.cpp index cb3a5b4d..ac80ba36 100644 --- a/driver/rsdRuntimeStubs.cpp +++ b/driver/rsdRuntimeStubs.cpp @@ -141,13 +141,13 @@ static void SC_AllocationCopy2DRange(Allocation *dstAlloc, #ifndef RS_COMPATIBILITY_LIB static void SC_AllocationIoSend(Allocation *alloc) { Context *rsc = RsdCpuReference::getTlsContext(); - rsdAllocationIoSend(rsc, alloc); + rsrAllocationIoSend(rsc, alloc); } static void SC_AllocationIoReceive(Allocation *alloc) { Context *rsc = RsdCpuReference::getTlsContext(); - rsdAllocationIoReceive(rsc, alloc); + rsrAllocationIoReceive(rsc, alloc); } |
