blob: 849fd980d5df6fb3d0134b52424465d0c162cbe0 [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 Samsc975cf42011-04-28 18:26:48 -070043namespace android {
44namespace renderscript {
45
46RsDevice rsi_DeviceCreate() {
Jason Sams326e0dd2009-05-22 14:03:28 -070047 Device * d = new Device();
48 return d;
49}
50
Jason Samsc975cf42011-04-28 18:26:48 -070051void rsi_DeviceDestroy(RsDevice dev) {
Jason Sams326e0dd2009-05-22 14:03:28 -070052 Device * d = static_cast<Device *>(dev);
53 delete d;
Jason Sams326e0dd2009-05-22 14:03:28 -070054}
55
Jason Samsc975cf42011-04-28 18:26:48 -070056void rsi_DeviceSetConfig(RsDevice dev, RsDeviceParam p, int32_t value) {
Jason Sams5fd09d82009-09-23 13:57:02 -070057 Device * d = static_cast<Device *>(dev);
58 if (p == RS_DEVICE_PARAM_FORCE_SOFTWARE_GL) {
59 d->mForceSW = value != 0;
60 return;
61 }
62 rsAssert(0);
63}
64
Jason Samsc975cf42011-04-28 18:26:48 -070065}
66}