blob: 5f62ad1cda9f2da2213319857fdaf7d600a886fb [file] [log] [blame]
Jason Samsd19f10d2009-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 "rsContext.h"
18
Jason Samsd19f10d2009-05-22 14:03:28 -070019#include "rsThreadIO.h"
20
21using namespace android;
22using namespace android::renderscript;
23
24ThreadIO *android::renderscript::gIO = NULL;
25
26ThreadIO::ThreadIO()
27{
28 mToCore.init(16 * 1024);
29}
30
31ThreadIO::~ThreadIO()
32{
33}
34
Jason Sams5f7fc272009-06-18 16:58:42 -070035bool ThreadIO::playCoreCommands(Context *con, bool waitForCommand)
Jason Samsd19f10d2009-05-22 14:03:28 -070036{
37 //LOGE("playCoreCommands 1");
38 uint32_t cmdID = 0;
39 uint32_t cmdSize = 0;
Jason Samsa09f11d2009-06-04 17:58:03 -070040 bool ret = false;
Jason Sams5f7fc272009-06-18 16:58:42 -070041 while(!mToCore.isEmpty() || waitForCommand) {
Jason Samsa09f11d2009-06-04 17:58:03 -070042 ret = true;
Jason Samsd19f10d2009-05-22 14:03:28 -070043 //LOGE("playCoreCommands 2");
44 const void * data = mToCore.get(&cmdID, &cmdSize);
Jason Sams5f7fc272009-06-18 16:58:42 -070045 waitForCommand = false;
Jason Samsd19f10d2009-05-22 14:03:28 -070046 //LOGE("playCoreCommands 3 %i %i", cmdID, cmdSize);
47
48 gPlaybackFuncs[cmdID](con, data);
49 //LOGE("playCoreCommands 4");
50
51 mToCore.next();
52 //LOGE("playCoreCommands 5");
53 }
Jason Samsa09f11d2009-06-04 17:58:03 -070054 return ret;
Jason Samsd19f10d2009-05-22 14:03:28 -070055}
56
57