Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/physics/src/bullet/BulletMultiThreaded/btThreadSupportInterface.h @ 1963

Last change on this file since 1963 was 1963, checked in by rgrieder, 16 years ago

Added Bullet physics engine.

  • Property svn:eol-style set to native
File size: 1.8 KB
Line 
1/*
2Bullet Continuous Collision Detection and Physics Library
3Copyright (c) 2003-2007 Erwin Coumans  http://bulletphysics.com
4
5This software is provided 'as-is', without any express or implied warranty.
6In no event will the authors be held liable for any damages arising from the use of this software.
7Permission is granted to anyone to use this software for any purpose,
8including commercial applications, and to alter it and redistribute it freely,
9subject to the following restrictions:
10
111. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
122. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
133. This notice may not be removed or altered from any source distribution.
14*/
15
16#ifndef THREAD_SUPPORT_INTERFACE_H
17#define THREAD_SUPPORT_INTERFACE_H
18
19
20//#include <LinearMath/btScalar.h> //for uint32_t etc.
21#include "PlatformDefinitions.h"
22
23class btThreadSupportInterface
24{
25public:
26
27        virtual ~btThreadSupportInterface();
28
29///send messages to SPUs
30        virtual void sendRequest(uint32_t uiCommand, uint32_t uiArgument0, uint32_t uiArgument1) =0;
31
32///check for messages from SPUs
33        virtual void waitForResponse(unsigned int *puiArgument0, unsigned int *puiArgument1) =0;
34
35///start the spus (can be called at the beginning of each frame, to make sure that the right SPU program is loaded)
36        virtual void startSPU() =0;
37
38///tell the task scheduler we are done with the SPU tasks
39        virtual void stopSPU()=0;
40
41        ///tell the task scheduler to use no more than numTasks tasks
42        virtual void    setNumTasks(int numTasks)=0;
43
44};
45
46#endif //THREAD_SUPPORT_INTERFACE_H
47
Note: See TracBrowser for help on using the repository browser.