Refactor hal to remove cpuConsumer from drivers
This CL should minimize build breaks due to
BufferQueue changes in the future.
Change-Id: I565a6eae5cc25603741fef32f2cfcb31a32eb757
diff --git a/rsScriptC_Lib.cpp b/rsScriptC_Lib.cpp
index 123b8b3..842d8d2 100644
--- a/rsScriptC_Lib.cpp
+++ b/rsScriptC_Lib.cpp
@@ -171,6 +171,13 @@
return rsc->sendMessageToClient(data, RS_MESSAGE_TO_CLIENT_USER, cmdID, len, true);
}
+void rsrAllocationIoSend(Context *rsc, Allocation *src) {
+ src->ioSend(rsc);
+}
+
+void rsrAllocationIoReceive(Context *rsc, Allocation *src) {
+ src->ioReceive(rsc);
+}
void rsrForEach(Context *rsc,
Script *target,