blob: 23c808a6d4d0adb17267735f03251abb39995704 [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 Samsa44cb292009-06-04 17:58:03 -070037bool ThreadIO::playCoreCommands(Context *con)
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 Sams326e0dd2009-05-22 14:03:28 -070043 while(!mToCore.isEmpty()) {
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);
47 //LOGE("playCoreCommands 3 %i %i", cmdID, cmdSize);
48
49 gPlaybackFuncs[cmdID](con, data);
50 //LOGE("playCoreCommands 4");
51
52 mToCore.next();
53 //LOGE("playCoreCommands 5");
54 }
Jason Samsa44cb292009-06-04 17:58:03 -070055 return ret;
Jason Sams326e0dd2009-05-22 14:03:28 -070056}
57
58