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.
28 lines
481 B
28 lines
481 B
//========== Copyright © Valve Corporation, All rights reserved. ========
|
|
#ifndef VJOBS_ACCUMPOSE_SHARED_HDR
|
|
#define VJOBS_ACCUMPOSE_SHARED_HDR
|
|
|
|
#include "ps3/spu_job_shared.h"
|
|
|
|
|
|
struct PS3BoneJobData;
|
|
|
|
namespace job_accumpose
|
|
{
|
|
typedef CellSpursJob128 JobDescriptor_t;
|
|
|
|
struct JobParams_t
|
|
{
|
|
int m_testInt_IN;
|
|
|
|
int m_testInt_OUT;
|
|
};
|
|
|
|
inline JobParams_t * GetJobParams( void *pJob )
|
|
{
|
|
return VjobGetJobParams< JobParams_t, JobDescriptor_t >( pJob );
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|