blob: 07cf0e89b5459a59883399b92b0e13d672394f95 [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
Chih-Hung Hsieh11496ac2016-11-15 15:14:05 -080020namespace android {
21namespace renderscript {
Jason Sams326e0dd2009-05-22 14:03:28 -070022
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) {
Miao Wang82e135c2017-02-27 23:35:35 -080031 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) {
Yang Nib8353c52015-02-14 18:00:59 -080035 for (size_t idx=0; idx < mContexts.size(); idx++) {
36 if (mContexts[idx] == rsc) {
Miao Wang82e135c2017-02-27 23:35:35 -080037 mContexts.erase(mContexts.begin() + idx);
Yang Nib8353c52015-02-14 18:00:59 -080038 break;
Jason Sams326e0dd2009-05-22 14:03:28 -070039 }
40 }
41}
Chih-Hung Hsieh11496ac2016-11-15 15:14:05 -080042
43} // namespace renderscript
44} // namespace android