Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
481 B

  1. //========== Copyright � Valve Corporation, All rights reserved. ========
  2. #ifndef VJOBS_ACCUMPOSE_SHARED_HDR
  3. #define VJOBS_ACCUMPOSE_SHARED_HDR
  4. #include "ps3/spu_job_shared.h"
  5. struct PS3BoneJobData;
  6. namespace job_accumpose
  7. {
  8. typedef CellSpursJob128 JobDescriptor_t;
  9. struct JobParams_t
  10. {
  11. int m_testInt_IN;
  12. int m_testInt_OUT;
  13. };
  14. inline JobParams_t * GetJobParams( void *pJob )
  15. {
  16. return VjobGetJobParams< JobParams_t, JobDescriptor_t >( pJob );
  17. }
  18. }
  19. #endif