blob: a7b2e7748fb0347483a6685c94b478b58b9bf871 [file] [log] [blame]
Jason Samsdbe66d62012-09-17 13:54:41 -07001/*
Jason Sams709a0972012-11-15 18:18:04 -08002 * Copyright (C) 2011-2012 The Android Open Source Project
Jason Samsdbe66d62012-09-17 13:54:41 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "rsdCore.h"
Jason Sams709a0972012-11-15 18:18:04 -080018#include "../cpu_ref/rsd_cpu.h"
Jason Samsdbe66d62012-09-17 13:54:41 -070019
Jason Samsdbe66d62012-09-17 13:54:41 -070020
21#include "rsScript.h"
22#include "rsScriptGroup.h"
23#include "rsdScriptGroup.h"
24#include "rsdBcc.h"
Jason Samsbee28c62012-10-25 18:15:54 -070025#include "rsdAllocation.h"
Jason Samsdbe66d62012-09-17 13:54:41 -070026
27using namespace android;
28using namespace android::renderscript;
29
30
Jason Sams709a0972012-11-15 18:18:04 -080031bool rsdScriptGroupInit(const Context *rsc, ScriptGroup *sg) {
32 RsdHal *dc = (RsdHal *)rsc->mHal.drv;
33
34 sg->mHal.drv = dc->mCpuRef->createScriptGroup(sg);
Chris Wailes44bef6f2014-08-12 13:51:10 -070035 return sg->mHal.drv != nullptr;
Jason Samsdbe66d62012-09-17 13:54:41 -070036}
37
Jason Sams709a0972012-11-15 18:18:04 -080038void rsdScriptGroupSetInput(const Context *rsc, const ScriptGroup *sg,
39 const ScriptKernelID *kid, Allocation *) {
Jason Samsdbe66d62012-09-17 13:54:41 -070040}
41
Jason Sams709a0972012-11-15 18:18:04 -080042void rsdScriptGroupSetOutput(const Context *rsc, const ScriptGroup *sg,
43 const ScriptKernelID *kid, Allocation *) {
Jason Samsdbe66d62012-09-17 13:54:41 -070044}
45
Jason Sams709a0972012-11-15 18:18:04 -080046void rsdScriptGroupExecute(const Context *rsc, const ScriptGroup *sg) {
47 RsdCpuReference::CpuScriptGroup *sgi = (RsdCpuReference::CpuScriptGroup *)sg->mHal.drv;
48 sgi->execute();
Jason Samsbee28c62012-10-25 18:15:54 -070049}
50
Jason Sams709a0972012-11-15 18:18:04 -080051void rsdScriptGroupDestroy(const Context *rsc, const ScriptGroup *sg) {
52 RsdCpuReference::CpuScriptGroup *sgi = (RsdCpuReference::CpuScriptGroup *)sg->mHal.drv;
53 delete sgi;
Jason Samsdbe66d62012-09-17 13:54:41 -070054}
55
Jason Samsa36c50a2014-06-17 12:06:06 -070056void rsdScriptGroupUpdateCachedObject(const Context *rsc,
57 const ScriptGroup *sg,
58 rs_script_group *obj)
59{
60 obj->p = sg;
61#ifdef __LP64__
Chris Wailes44bef6f2014-08-12 13:51:10 -070062 obj->r = nullptr;
63 if (sg != nullptr) {
Jason Samsa36c50a2014-06-17 12:06:06 -070064 obj->v1 = sg->mHal.drv;
65 } else {
Chris Wailes44bef6f2014-08-12 13:51:10 -070066 obj->v1 = nullptr;
Jason Samsa36c50a2014-06-17 12:06:06 -070067 }
Chris Wailes44bef6f2014-08-12 13:51:10 -070068 obj->v2 = nullptr;
Jason Samsa36c50a2014-06-17 12:06:06 -070069#endif
70}
71
Jason Samsdbe66d62012-09-17 13:54:41 -070072