blob: 1ba005a29008f02c8b7badb1f4c0ae23f8f82119 [file] [log] [blame]
Jason Sams326e0dd2009-05-22 14:03:28 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
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 "rsDevice.h"
18#include "rsContext.h"
19
20using namespace android;
21using namespace android::renderscript;
22
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080023Device::Device() {
Jason Sams5fd09d82009-09-23 13:57:02 -070024 mForceSW = false;
Jason Sams326e0dd2009-05-22 14:03:28 -070025}
26
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080027Device::~Device() {
Jason Sams326e0dd2009-05-22 14:03:28 -070028}
29
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080030void Device::addContext(Context *rsc) {
Chris Wailes93d6bc82014-07-28 16:54:38 -070031 mContexts.push_back(rsc);
Jason Sams326e0dd2009-05-22 14:03:28 -070032}
33
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080034void Device::removeContext(Context *rsc) {
Chris Wailes93d6bc82014-07-28 16:54:38 -070035 for (auto ctxIter = mContexts.begin(), endIter = mContexts.end();
36 ctxIter != endIter; ctxIter++) {
37
38 if (rsc == *ctxIter) {
39 mContexts.erase(ctxIter);
40 return;
Jason Sams326e0dd2009-05-22 14:03:28 -070041 }
42 }
43}
44
Tim Murrayc2ce7072013-07-17 18:38:53 -070045extern "C" RsDevice rsDeviceCreate() {
Jason Sams326e0dd2009-05-22 14:03:28 -070046 Device * d = new Device();
47 return d;
48}
49
Tim Murrayc2ce7072013-07-17 18:38:53 -070050extern "C" void rsDeviceDestroy(RsDevice dev) {
Jason Sams326e0dd2009-05-22 14:03:28 -070051 Device * d = static_cast<Device *>(dev);
52 delete d;
Jason Sams326e0dd2009-05-22 14:03:28 -070053}
54
Tim Murrayc2ce7072013-07-17 18:38:53 -070055extern "C" void rsDeviceSetConfig(RsDevice dev, RsDeviceParam p, int32_t value) {
Jason Sams5fd09d82009-09-23 13:57:02 -070056 Device * d = static_cast<Device *>(dev);
57 if (p == RS_DEVICE_PARAM_FORCE_SOFTWARE_GL) {
58 d->mForceSW = value != 0;
59 return;
60 }
61 rsAssert(0);
62}