blob: 56415819adbb24dc7289ea1a9628e50ef45d5510 [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 "rsContext.h"
18
19#include <utils/Log.h>
20
21#include "rsThreadIO.h"
22
23using namespace android;
24using namespace android::renderscript;
25
26ThreadIO *android::renderscript::gIO = NULL;
27
28ThreadIO::ThreadIO()
29{
30 mToCore.init(16 * 1024);
31}
32
33ThreadIO::~ThreadIO()
34{
35}
36
Jason Sams732f1c02009-06-18 16:58:42 -070037bool ThreadIO::playCoreCommands(Context *con, bool waitForCommand)
Jason Sams326e0dd2009-05-22 14:03:28 -070038{
39 //LOGE("playCoreCommands 1");
40 uint32_t cmdID = 0;
41 uint32_t cmdSize = 0;
Jason Samsa44cb292009-06-04 17:58:03 -070042 bool ret = false;
Jason Sams732f1c02009-06-18 16:58:42 -070043 while(!mToCore.isEmpty() || waitForCommand) {
Jason Samsa44cb292009-06-04 17:58:03 -070044 ret = true;
Jason Sams326e0dd2009-05-22 14:03:28 -070045 //LOGE("playCoreCommands 2");
46 const void * data = mToCore.get(&cmdID, &cmdSize);
Jason Sams732f1c02009-06-18 16:58:42 -070047 waitForCommand = false;
Jason Sams326e0dd2009-05-22 14:03:28 -070048 //LOGE("playCoreCommands 3 %i %i", cmdID, cmdSize);
49
50 gPlaybackFuncs[cmdID](con, data);
51 //LOGE("playCoreCommands 4");
52
53 mToCore.next();
54 //LOGE("playCoreCommands 5");
55 }
Jason Samsa44cb292009-06-04 17:58:03 -070056 return ret;
Jason Sams326e0dd2009-05-22 14:03:28 -070057}
58
59