blob: d7d03f6a283d6af7298a86b767e69c81578a91b4 [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) {
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070031 mContexts.push(rsc);
Jason Sams326e0dd2009-05-22 14:03:28 -070032}
33
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080034void Device::removeContext(Context *rsc) {
Jason Sams326e0dd2009-05-22 14:03:28 -070035 for (size_t idx=0; idx < mContexts.size(); idx++) {
36 if (mContexts[idx] == rsc) {
37 mContexts.removeAt(idx);
38 break;
39 }
40 }
41}
42
Jason Sams789ca832011-05-18 17:36:02 -070043RsDevice rsDeviceCreate() {
Jason Sams326e0dd2009-05-22 14:03:28 -070044 Device * d = new Device();
45 return d;
46}
47
Jason Sams789ca832011-05-18 17:36:02 -070048void rsDeviceDestroy(RsDevice dev) {
Jason Sams326e0dd2009-05-22 14:03:28 -070049 Device * d = static_cast<Device *>(dev);
50 delete d;
Jason Sams326e0dd2009-05-22 14:03:28 -070051}
52
Jason Sams789ca832011-05-18 17:36:02 -070053void rsDeviceSetConfig(RsDevice dev, RsDeviceParam p, int32_t value) {
Jason Sams5fd09d82009-09-23 13:57:02 -070054 Device * d = static_cast<Device *>(dev);
55 if (p == RS_DEVICE_PARAM_FORCE_SOFTWARE_GL) {
56 d->mForceSW = value != 0;
57 return;
58 }
59 rsAssert(0);
60}
61