hkSpuDmaUtils.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. #ifndef HK_SPU_DMA_UTILS_H
  9. #define HK_SPU_DMA_UTILS_H
  10. #include <Common/Base/hkBase.h>
  11. enum
  12. {
  13. HK_SPU_DMA_GROUP_STALL = 14,
  14. HK_SPU_DMA_GROUP_IDLE = 15, // DO NOT use this dma group for any get/put operations! use it only for 'idle' waiting.
  15. };
  16. /// this utility allows simple access to variables in main memory and can be used either from the SPU, PPU or CPU
  17. struct hkSpuDmaUtils
  18. {
  19. /// Convenient and slow function to increment a value, returns the new value
  20. static hkInt32 HK_CALL incrementInt32InMainMemory( HK_CPU_PTR(hkInt32*) variable, int increment, int dmaGroupId = HK_SPU_DMA_GROUP_STALL );
  21. /// Convenient and slow function to set a variable
  22. static void HK_CALL setInt32InMainMemory( HK_CPU_PTR(hkInt32*) variable, hkInt32 value, int dmaGroupId = HK_SPU_DMA_GROUP_STALL );
  23. /// Convenient and slow function to get a variable
  24. static hkInt32 HK_CALL getInt32FromMainMemory( HK_CPU_PTR(hkInt32*) variable, int dmaGroupId = HK_SPU_DMA_GROUP_STALL );
  25. /// Convenient way to get a single pointer
  26. static void* HK_CALL getPntrFromMainMemory( HK_CPU_PTR(void**) variable, int dmaGroupId = HK_SPU_DMA_GROUP_STALL );
  27. /// put a float to main memory & wait for completion
  28. static void HK_CALL setFloat32InMainMemory( HK_CPU_PTR(float*) dstInMainMemory, hkReal f, int dmaGroupId = HK_SPU_DMA_GROUP_STALL );
  29. /// put a half float to main memory & wait for completion
  30. //static void HK_CALL setFloat16InMainMemory( HK_CPU_PTR(hkHalf*) dstInMainMemory, hkReal f, int dmaGroupId = HK_SPU_DMA_GROUP_STALL );
  31. /// put a char to main memory & wait for completion
  32. static void HK_CALL setChar8InMainMemory( HK_CPU_PTR(hkChar*) dstInMainMemory, hkChar c, int dmaGroupId = HK_SPU_DMA_GROUP_STALL );
  33. };
  34. # include <Common/Base/Spu/Dma/Utils/hkDefaultSpuDmaUtils.inl>
  35. #endif // HK_SPU_DMA_UTILS_H
  36. /*
  37. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  38. * Confidential Information of Havok.  (C) Copyright 1999-2009
  39. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  40. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  41. * rights, and intellectual property rights in the Havok software remain in
  42. * Havok and/or its suppliers.
  43. * Use of this software for evaluation purposes is subject to and indicates
  44. * acceptance of the End User licence Agreement for this product. A copy of
  45. * the license is included with this software and is also available at www.havok.com/tryhavok.
  46. */